Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 1 | namespace phosphor |
| 2 | { |
| 3 | namespace dump |
| 4 | { |
| 5 | namespace 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 | */ |
| 14 | void requestOffload(uint32_t id); |
Ramesh Iyyar | 2279386 | 2020-12-04 04:03:03 -0600 | [diff] [blame] | 15 | |
| 16 | /** |
| 17 | * @brief Request to delete dump |
| 18 | * |
| 19 | * @param[in] id - The Dump Source ID. |
Dhruvaraj Subhashchandran | 4c63ce5 | 2020-12-18 02:07:22 -0600 | [diff] [blame] | 20 | * @param[in] type - transport defined type of the dump. |
Ramesh Iyyar | 2279386 | 2020-12-04 04:03:03 -0600 | [diff] [blame] | 21 | * @return NULL |
| 22 | * |
| 23 | */ |
Dhruvaraj Subhashchandran | 4c63ce5 | 2020-12-18 02:07:22 -0600 | [diff] [blame] | 24 | void requestDelete(uint32_t id, uint32_t type); |
Ramesh Iyyar | 2279386 | 2020-12-04 04:03:03 -0600 | [diff] [blame] | 25 | |
Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 26 | } // namespace host |
| 27 | } // namespace dump |
| 28 | } // namespace phosphor |