HomeSort by relevance Sort by last modified time
    Searched defs:statm (Results 1 - 10 of 10) sorted by null

  /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
  /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));

Completed in 566 milliseconds