1 #include <cstdint> 2 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); 17 18 /** 19 * @brief Request to delete dump 20 * 21 * @param[in] id - The Dump Source ID. 22 * @param[in] type - transport defined type of the dump. 23 * @return NULL 24 * 25 */ 26 void requestDelete(uint32_t id, uint32_t type); 27 28 } // namespace host 29 } // namespace dump 30 } // namespace phosphor 31