Home
last modified time | relevance | path

Searched refs:TOTAL_SWAP_OUT_QUOTA_KB (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/resourceschedule/memmgr/services/memmgrservice/src/nandlife_controller/
H A Dnandlife_controller.cpp93 TOTAL_SWAP_OUT_QUOTA_KB = config_.GetTotalSwapOutQuotaMb() * 1024; // 1024: MB to KB in Init()
240 bool reachedTotalLimit = swapOutKBSinceBirth_ >= TOTAL_SWAP_OUT_QUOTA_KB; in CheckReachedTotalLimit()
242 iter_, swapOutKBSinceBirth_, (reachedTotalLimit ? ">=" : "<"), TOTAL_SWAP_OUT_QUOTA_KB); in CheckReachedTotalLimit()
294 if (swapOutKBSinceBirth_ < TOTAL_SWAP_OUT_QUOTA_KB) { // swap-out is allowed in CheckSwapOut()
/ohos5.0/foundation/resourceschedule/memmgr/services/memmgrservice/include/nandlife_controller/
H A Dnandlife_controller.h35 unsigned long long TOTAL_SWAP_OUT_QUOTA_KB; variable