/external/ltp/tools/pounder21/src/ |
dump_xserver_statm | 3 # Dump X11 server statm data 23 cat /proc/`ps -ef | grep "$XSERVER_FILE :2" | egrep -v "(timed_loop|grep)" | awk '{print $2}'`/statm >> $POUNDER_LOGDIR/xserver_statm
|
/external/python/cpython3/Lib/test/ |
memory_watchdog.py | 3 # stdin should refer to the process' /proc/<PID>/statm: we don't pass the 23 statm = sys.stdin.read() variable 24 data = int(statm.split()[5])
|
test_doctest2.py | 87 def statm(): member in class:C 91 >>> print(C.statm()) # 16 93 >>> print(C().statm()) # 17
|
/external/skia/tools/ |
ProcStats.cpp | 51 if (FILE* statm = fopen("/proc/self/statm", "r")) { 52 // statm contains: program-size rss shared text lib data dirty, all in page counts. 53 int rc = fscanf(statm, "%*d %lld", &rssPages); 54 fclose(statm);
|
/external/skqp/tools/ |
ProcStats.cpp | 51 if (FILE* statm = fopen("/proc/self/statm", "r")) { 52 // statm contains: program-size rss shared text lib data dirty, all in page counts. 53 int rc = fscanf(statm, "%*d %lld", &rssPages); 54 fclose(statm);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_doctest2.py | 88 def statm():
member in class:C 92 >>> print C.statm() # 16
94 >>> print C().statm() # 17
|
/external/python/cpython2/Lib/test/ |
test_doctest2.py | 88 def statm(): member in class:C 92 >>> print C.statm() # 16 94 >>> print C().statm() # 17
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_doctest2.py | 88 def statm(): member in class:C 92 >>> print C.statm() # 16 94 >>> print C().statm() # 17
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_doctest2.py | 88 def statm(): member in class:C 92 >>> print C.statm() # 16 94 >>> print C().statm() # 17
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_doctest2.py | 88 def statm(): member in class:C 92 >>> print C.statm() # 16 94 >>> print C().statm() # 17
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_doctest2.py | 88 def statm(): member in class:C 92 >>> print C.statm() # 16 94 >>> print C().statm() # 17
|
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
RootProcessScanner.java | 105 File statm = getProcessStatM(processDir); local 108 scanner = new Scanner(statm); 119 + " statm expected to have 7 integers (man 5 proc)"); 131 return new File(processDir, "statm");
|
/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/ |
RootProcessScanner.java | 124 String statm = getProcessStatM(processDir); local 125 try (Scanner scanner = new Scanner(statm)) { 135 + " statm expected to have 7 integers (man 5 proc)"); 143 return mDevice.executeShellCommand(String.format("cat %s/statm", processDir));
|
/external/libchrome/base/process/ |
process_metrics_linux.cc | 413 // Private and Shared working set sizes are obtained from /proc/<pid>/statm. 416 // Use statm instead of smaps because smaps is: 426 std::string statm; 428 FilePath statm_file = internal::GetProcPidDir(process_).Append("statm"); 431 bool ret = ReadFileToString(statm_file, &statm); 432 if (!ret || statm.length() == 0) 437 SplitStringPiece(statm, " ", TRIM_WHITESPACE, SPLIT_WANT_ALL); 453 // Can't get swapped memory from statm.
|
/toolchain/binutils/binutils-2.27/ld/ |
ldlang.c | [all...] |