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