Home
last modified time | relevance | path

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

/ohos5.0/foundation/resourceschedule/memmgr/services/memmgrservice/src/purgeable_mem_manager/
H A Dpurgeable_mem_utils.cpp61 int pinedKB = -1; in GetPurgeableHeapInfo() local
74 pinedKB = stoi(words[1]); in GetPurgeableHeapInfo()
82 if (activeKB < 0 || inactiveKB < 0 || pinedKB < 0) { in GetPurgeableHeapInfo()
85 if (activeKB > (INT_MAX - inactiveKB) || (activeKB + inactiveKB) < (INT_MIN + pinedKB)) { in GetPurgeableHeapInfo()
88 reclaimableKB = activeKB + inactiveKB - pinedKB; in GetPurgeableHeapInfo()