Home
last modified time | relevance | path

Searched refs:fastFrozen (Results 1 - 1 of 1) sorted by relevance

/foundation/resourceschedule/background_task_mgr/services/common/src/
H A Ddata_storage_helper.cpp135 nlohmann::json fastFrozen = param[FAST_FROZEN]; in ParseFastSuspendDozeTime() local
136 if (fastFrozen.is_null() || !fastFrozen.is_object() || in ParseFastSuspendDozeTime()
137 !CommonUtils::CheckJsonValue(fastFrozen, {ENABLE, DOZE_TIME})) { in ParseFastSuspendDozeTime()
138 BGTASK_LOGW("check fastFrozen value failed."); in ParseFastSuspendDozeTime()
141 if (!fastFrozen[ENABLE].is_boolean() || !fastFrozen.at(ENABLE).get<bool>()) { in ParseFastSuspendDozeTime()
145 if (!fastFrozen[DOZE_TIME].is_number_integer()) { in ParseFastSuspendDozeTime()
149 time = fastFrozen.at(DOZE_TIME).get<int>(); in ParseFastSuspendDozeTime()

Completed in 1 milliseconds