Home
last modified time | relevance | path

Searched refs:thread_mmaps (Results 1 – 4 of 4) sorted by relevance

/system/extras/simpleperf/
DJITDebugReader.cpp299 std::vector<ThreadMmap> thread_mmaps; in InitializeProcess() local
300 if (!GetThreadMmapsInProcess(process.pid, &thread_mmaps)) { in InitializeProcess()
306 for (auto& map : thread_mmaps) { in InitializeProcess()
530 std::vector<ThreadMmap> thread_mmaps; in ReadDexFileDebugInfo() local
531 if (!GetThreadMmapsInProcess(process.pid, &thread_mmaps)) { in ReadDexFileDebugInfo()
539 auto it = std::lower_bound(thread_mmaps.begin(), thread_mmaps.end(), in ReadDexFileDebugInfo()
541 if (it == thread_mmaps.begin()) { in ReadDexFileDebugInfo()
Denvironment.cpp262 bool GetThreadMmapsInProcess(pid_t pid, std::vector<ThreadMmap>* thread_mmaps) { in GetThreadMmapsInProcess() argument
263 thread_mmaps->clear(); in GetThreadMmapsInProcess()
267 thread_mmaps->emplace_back(start, end - start, pgoff, name, flags); in GetThreadMmapsInProcess()
538 std::vector<ThreadMmap> thread_mmaps; in PrepareVdsoFile() local
539 if (!GetThreadMmapsInProcess(getpid(), &thread_mmaps)) { in PrepareVdsoFile()
543 for (const auto& map : thread_mmaps) { in PrepareVdsoFile()
Denvironment.h61 bool GetThreadMmapsInProcess(pid_t pid, std::vector<ThreadMmap>* thread_mmaps);
Dcmd_record.cpp1141 std::vector<ThreadMmap> thread_mmaps; in DumpProcessMaps() local
1142 if (!GetThreadMmapsInProcess(pid, &thread_mmaps)) { in DumpProcessMaps()
1148 for (const auto& map : thread_mmaps) { in DumpProcessMaps()