OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:statm
(Results
1 - 2
of
2
) sorted by null
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java
99
File
statm
= getProcessStatM(processDir);
local
102
scanner = new Scanner(
statm
);
113
+ "
statm
expected to have 7 integers (man 5 proc)");
125
return new File(processDir, "
statm
");
/external/chromium/base/
process_util_linux.cc
339
// When that's not available, use the values from /proc<pid>/
statm
as a
391
// Try
statm
if smaps is empty because of the SUID sandbox.
397
std::string
statm
;
399
FilePath statm_file = proc_dir.Append("
statm
");
402
ret = file_util::ReadFileToString(statm_file, &
statm
);
404
if (!ret ||
statm
.length() == 0)
408
base::SplitString(
statm
, ' ', &statm_vec);
Completed in 808 milliseconds