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

  /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 101 File statm = getProcessStatM(processDir); local
104 scanner = new Scanner(statm);
115 + " statm expected to have 7 integers (man 5 proc)");
127 return new File(processDir, "statm");
  /external/chromium_org/tools/linux/
procfs.py 116 """Reads and stores information in /proc/pid/statm."""
139 statm = ProcStatm._PATTERN.match(raw[0])
141 statm.groupdict().get('SIZE'),
142 statm.groupdict().get('RESIDENT'),
143 statm.groupdict().get('SHARE'),
144 statm.groupdict().get('TEXT'),
145 statm.groupdict().get('LIB'),
146 statm.groupdict().get('DATA'),
147 statm.groupdict().get('DT'))
151 with open(os.path.join('/proc', str(pid), 'statm'), 'r') as statm_f
679 def statm(self): member in class:_ProcessMemory
    [all...]

Completed in 82 milliseconds