Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/am/
DAppCompactor.java328 return (app.lastCompactTime == 0 in shouldCompactPersistent()
329 || (now - app.lastCompactTime) > mCompactThrottlePersistent); in shouldCompactPersistent()
343 return (app.lastCompactTime == 0 in shouldCompactBFGS()
344 || (now - app.lastCompactTime) > mCompactThrottleBFGS); in shouldCompactBFGS()
537 long lastCompactTime; in handleMessage() local
562 lastCompactTime = proc.lastCompactTime; in handleMessage()
580 if (lastCompactTime != 0) { in handleMessage()
583 && (start - lastCompactTime < mCompactThrottleSomeSome)) in handleMessage()
585 && (start - lastCompactTime in handleMessage()
591 + (start - lastCompactTime) + "ms ago"); in handleMessage()
[all …]
DProcessRecord.java153 long lastCompactTime; // The last time that this process was compacted field in ProcessRecord
401 pw.print(prefix); pw.print("lastCompactTime="); pw.print(lastCompactTime); in dump()