blob: 8e218eea063ec9f9af7f7179beaeddd7e4b1e04b [file] [log] [blame]
Dhruvaraj Subhashchandran59642e22020-03-19 03:37:44 -05001namespace phosphor
2{
3namespace dump
4{
5namespace host
6{
7
8/**
9 * @brief Initiate offload of the dump with provided id
10 *
11 * @param[in] id - The Dump Source ID.
12 *
13 */
14void requestOffload(uint32_t id);
Ramesh Iyyar22793862020-12-04 04:03:03 -060015
16/**
17 * @brief Request to delete dump
18 *
19 * @param[in] id - The Dump Source ID.
Dhruvaraj Subhashchandran4c63ce52020-12-18 02:07:22 -060020 * @param[in] type - transport defined type of the dump.
Ramesh Iyyar22793862020-12-04 04:03:03 -060021 * @return NULL
22 *
23 */
Dhruvaraj Subhashchandran4c63ce52020-12-18 02:07:22 -060024void requestDelete(uint32_t id, uint32_t type);
Ramesh Iyyar22793862020-12-04 04:03:03 -060025
Dhruvaraj Subhashchandran59642e22020-03-19 03:37:44 -050026} // namespace host
27} // namespace dump
28} // namespace phosphor