Searched refs:dryRun (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/core/java/com/android/server/am/ |
D | ProcessCachedOptimizerRecord.java | 287 boolean setShouldNotFreeze(boolean shouldNotFreeze, boolean dryRun) { in setShouldNotFreeze() argument 288 if (dryRun) { in setShouldNotFreeze()
|
D | OomAdjuster.java | 2621 boolean couldRecurse, boolean dryRun) { in computeServiceHostOomAdjLSP() argument 2665 if (!dryRun) { in computeServiceHostOomAdjLSP() 2675 if (app.mOptRecord.setShouldNotFreeze(true, dryRun)) { in computeServiceHostOomAdjLSP() 2742 if (app.mOptRecord.setShouldNotFreeze(true, dryRun)) { in computeServiceHostOomAdjLSP() 2758 if (state.isCached() && dryRun) { in computeServiceHostOomAdjLSP() 2805 if (!dryRun) { in computeServiceHostOomAdjLSP() 2849 if (state.isCached() && dryRun) { in computeServiceHostOomAdjLSP() 2857 if (state.setCurRawAdj(adj, dryRun)) { in computeServiceHostOomAdjLSP() 2926 if (dryRun) { in computeServiceHostOomAdjLSP() 2936 if (!trackedProcState && !dryRun) { in computeServiceHostOomAdjLSP() [all …]
|
D | ProcessStateRecord.java | 485 boolean setCurRawAdj(int curRawAdj, boolean dryRun) { in setCurRawAdj() argument 486 if (dryRun) { in setCurRawAdj() 613 boolean setCurRawProcState(int curRawProcState, boolean dryRun) { in setCurRawProcState() argument 614 if (dryRun) { in setCurRawProcState()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | RecyclerView.java | 5508 View getViewForPosition(int position, boolean dryRun) { in getViewForPosition() argument 5509 return tryGetViewHolderForPositionByDeadline(position, dryRun, FOREVER_NS).itemView; in getViewForPosition() 5532 boolean dryRun, long deadlineNs) { in tryGetViewHolderForPositionByDeadline() argument 5546 holder = getScrapOrHiddenOrCachedHolderForPosition(position, dryRun); in tryGetViewHolderForPositionByDeadline() 5550 if (!dryRun) { in tryGetViewHolderForPositionByDeadline() 5580 type, dryRun); in tryGetViewHolderForPositionByDeadline() 6013 ViewHolder getScrapOrHiddenOrCachedHolderForPosition(int position, boolean dryRun) { in getScrapOrHiddenOrCachedHolderForPosition() argument 6026 if (!dryRun) { in getScrapOrHiddenOrCachedHolderForPosition() 6053 if (!dryRun) { in getScrapOrHiddenOrCachedHolderForPosition() 6066 ViewHolder getScrapOrCachedViewForId(long id, int type, boolean dryRun) { in getScrapOrCachedViewForId() argument [all …]
|