Jayanth Othayoth | 07b9b56 | 2025-02-06 05:37:13 -0600 | [diff] [blame] | 1 | #include <cstdint> |
| 2 | |
Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 3 | namespace phosphor |
| 4 | { |
| 5 | namespace dump |
| 6 | { |
| 7 | namespace host |
| 8 | { |
| 9 | |
| 10 | /** |
| 11 | * @brief Initiate offload of the dump with provided id |
| 12 | * |
| 13 | * @param[in] id - The Dump Source ID. |
| 14 | * |
| 15 | */ |
| 16 | void requestOffload(uint32_t id); |
Ramesh Iyyar | 2279386 | 2020-12-04 04:03:03 -0600 | [diff] [blame] | 17 | |
| 18 | /** |
| 19 | * @brief Request to delete dump |
| 20 | * |
| 21 | * @param[in] id - The Dump Source ID. |
Dhruvaraj Subhashchandran | 4c63ce5 | 2020-12-18 02:07:22 -0600 | [diff] [blame] | 22 | * @param[in] type - transport defined type of the dump. |
Ramesh Iyyar | 2279386 | 2020-12-04 04:03:03 -0600 | [diff] [blame] | 23 | * @return NULL |
| 24 | * |
| 25 | */ |
Dhruvaraj Subhashchandran | 4c63ce5 | 2020-12-18 02:07:22 -0600 | [diff] [blame] | 26 | void requestDelete(uint32_t id, uint32_t type); |
Ramesh Iyyar | 2279386 | 2020-12-04 04:03:03 -0600 | [diff] [blame] | 27 | |
Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 28 | } // namespace host |
| 29 | } // namespace dump |
| 30 | } // namespace phosphor |