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

  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_proc_maps.cpp 190 char maps_file[32]; local
191 snprintf(maps_file, sizeof maps_file, "/proc/%u/maps", pid);
192 (void)internal_->Open(maps_file);
  /ndk/sources/android/crazy_linker/src/
crazy_linker_proc_maps.cpp 190 char maps_file[32]; local
191 snprintf(maps_file, sizeof maps_file, "/proc/%u/maps", pid);
192 (void)internal_->Open(maps_file);
  /external/chromium_org/net/tools/disk_cache_memory_test/
disk_cache_memory_test.cc 195 std::ifstream maps_file(
197 if (!maps_file.good()) {
204 if (!std::getline(maps_file, line) || line.empty())
211 if (!std::getline(maps_file, line) || line.empty())
220 if (!std::getline(maps_file, line) || line.empty())
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_profiling_helper_unittest.py 21 maps_file = '/proc/%d/maps' % pid
22 maps = device.old_interface.GetProtectedFileContents(maps_file)
  /external/chromium_org/v8/tools/
stats-viewer.py 105 maps_file = open(maps_name, "r")
108 for m in re.finditer(r"/dev/shm/\S*", maps_file.read()):
116 maps_file.close()
  /external/chromium_org/tools/android/memdump/
memdump.cc 180 std::ifstream maps_file(base::StringPrintf("/proc/%d/maps", pid).c_str());
181 if (!maps_file.good()) {
187 while (std::getline(maps_file, line) && !line.empty()) {

Completed in 769 milliseconds