HomeSort by relevance Sort by last modified time
    Searched refs:getValueForId (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/com/android/internal/app/procstats/
SysMemUsageTable.java 150 long count = getValueForId((byte)bucket, SYS_MEM_USAGE_SAMPLE_COUNT);
179 DebugUtils.printSizeValue(pw, getValueForId((byte)bucket, index) * 1024);
181 DebugUtils.printSizeValue(pw, getValueForId((byte)bucket, index + 1) * 1024);
183 DebugUtils.printSizeValue(pw, getValueForId((byte)bucket, index+2) * 1024);
ProcessState.java 618 long time = mDurations.getValueForId((byte)state);
626 return mPssTable.getValueForId((byte)state, PSS_SAMPLE_COUNT);
630 return mPssTable.getValueForId((byte)state, PSS_MINIMUM);
634 return mPssTable.getValueForId((byte)state, PSS_AVERAGE);
638 return mPssTable.getValueForId((byte)state, PSS_MAXIMUM);
642 return mPssTable.getValueForId((byte)state, PSS_USS_MINIMUM);
646 return mPssTable.getValueForId((byte)state, PSS_USS_AVERAGE);
650 return mPssTable.getValueForId((byte)state, PSS_USS_MAXIMUM);
808 long time = mDurations.getValueForId((byte)bucket);
    [all...]
SparseMappingTable.java 212 public long getValueForId(byte id) {
213 return getValueForId(id, 0);
224 public long getValueForId(byte id, int index) {
ServiceState.java 354 long time = mDurations.getValueForId((byte)state);
  /frameworks/base/core/tests/coretests/src/com/android/internal/app/procstats/
SparseMappingTableTest.java 203 // If you get the value with getValueForId you get 0.
204 Assert.assertEquals(0, table.getValueForId(ID1));

Completed in 187 milliseconds