OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:statm
(Results
1 - 4
of
4
) sorted by null
/external/skia/tools/
ProcStats.cpp
50
if (FILE*
statm
= fopen("/proc/self/
statm
", "r")) {
51
//
statm
contains: program-size rss shared text lib data dirty, all in page counts.
52
int rc = fscanf(
statm
, "%*d %lld", &rssPages);
53
fclose(
statm
);
/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
");
Completed in 225 milliseconds