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

  /frameworks/base/core/java/android/webkit/
JniUtil.java 184 ActivityManager.MemoryInfo memInfo = new ActivityManager.MemoryInfo();
185 manager.getMemoryInfo(memInfo);
186 long leftToAllocate = memInfo.availMem - memInfo.threshold;
187 return !memInfo.lowMemory && bytesRequested < leftToAllocate;
WebViewCore.java 216 ActivityManager.MemoryInfo memInfo = new ActivityManager.MemoryInfo();
217 manager.getMemoryInfo(memInfo);
    [all...]
  /frameworks/base/core/java/android/os/
PerformanceCollector.java 492 Debug.MemoryInfo memInfo = new Debug.MemoryInfo();
493 Debug.getMemoryInfo(memInfo);
519 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_PSS, memInfo.nativePss);
520 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_PRIVATE_DIRTY, memInfo.nativePrivateDirty);
521 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_SHARED_DIRTY, memInfo.nativeSharedDirty);
526 mPerfSnapshot.putLong(METRIC_KEY_JAVA_PSS, memInfo.dalvikPss);
527 mPerfSnapshot.putLong(METRIC_KEY_JAVA_PRIVATE_DIRTY, memInfo.dalvikPrivateDirty);
528 mPerfSnapshot.putLong(METRIC_KEY_JAVA_SHARED_DIRTY, memInfo.dalvikSharedDirty);
530 mPerfSnapshot.putLong(METRIC_KEY_OTHER_PSS, memInfo.otherPss);
531 mPerfSnapshot.putLong(METRIC_KEY_OTHER_PRIVATE_DIRTY, memInfo.otherPrivateDirty)
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
LoadTestsAutoTest.java 169 ps.println("** MEMINFO in pid " + Process.myPid()
182 Debug.MemoryInfo memInfo = new Debug.MemoryInfo();
183 Debug.getMemoryInfo(memInfo);
185 final int nativeShared = memInfo.nativeSharedDirty;
186 final int dalvikShared = memInfo.dalvikSharedDirty;
187 final int otherShared = memInfo.otherSharedDirty;
189 final int nativePrivate = memInfo.nativePrivateDirty;
190 final int dalvikPrivate = memInfo.dalvikPrivateDirty;
191 final int otherPrivate = memInfo.otherPrivateDirty;
200 printRow(ps, formatString, "(Pss):", memInfo.nativePss, memInfo.dalvikPss
    [all...]
  /external/webkit/Tools/record-memory-win/
main.cpp 89 unsigned int memInfo = 0;
100 memInfo = (pmc.PrivateUsage);
104 return memInfo;
  /frameworks/base/core/java/android/app/
ActivityThread.java     [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningProcessesView.java 443 ActivityManager.MemoryInfo memInfo = new ActivityManager.MemoryInfo();
444 mAm.getMemoryInfo(memInfo);
445 SECONDARY_SERVER_MEM = memInfo.secondaryServerThreshold;
  /libcore/benchmarks/libs/
caliper.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 424 milliseconds