HomeSort by relevance Sort by last modified time
    Searched refs:smaps (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 97 char *smaps = 0; local
99 uptr smaps_len = ReadFileToBuffer("/proc/self/smaps",
100 &smaps, &smaps_cap, 64<<20);
105 const char *pos = smaps;
106 while (pos < smaps + smaps_len) {
131 UnmapOrDie(smaps, smaps_cap);
  /external/chromium/base/
process_util_linux.cc 338 // Private and Shared working set sizes are obtained from /proc/<pid>/smaps.
347 std::string smaps; local
354 FilePath smaps_file = proc_dir.Append("smaps");
357 ret = file_util::ReadFileToString(smaps_file, &smaps);
359 if (ret && smaps.length() > 0) {
362 StringTokenizer tokenizer(smaps, ":\n");
391 // Try statm if smaps is empty because of the SUID sandbox.

Completed in 43 milliseconds