Home
last modified time | relevance | path

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

/system/extras/simpleperf/
DJITDebugReader.cpp386 std::vector<ThreadMmap> thread_mmaps; in InitializeProcess() local
387 if (!GetThreadMmapsInProcess(process.pid, &thread_mmaps)) { in InitializeProcess()
393 for (auto& map : thread_mmaps) { in InitializeProcess()
670 std::vector<ThreadMmap> thread_mmaps; in ReadDexFileDebugInfo() local
671 if (!GetThreadMmapsInProcess(process.pid, &thread_mmaps)) { in ReadDexFileDebugInfo()
679 auto it = std::lower_bound(thread_mmaps.begin(), thread_mmaps.end(), in ReadDexFileDebugInfo()
681 if (it == thread_mmaps.begin()) { in ReadDexFileDebugInfo()
Denvironment.cpp237 bool GetThreadMmapsInProcess(pid_t pid, std::vector<ThreadMmap>* thread_mmaps) { in GetThreadMmapsInProcess() argument
238 thread_mmaps->clear(); in GetThreadMmapsInProcess()
242 thread_mmaps->emplace_back(start, end - start, pgoff, name, flags); in GetThreadMmapsInProcess()
519 std::vector<ThreadMmap> thread_mmaps; in PrepareVdsoFile() local
520 if (!GetThreadMmapsInProcess(getpid(), &thread_mmaps)) { in PrepareVdsoFile()
524 for (const auto& map : thread_mmaps) { in PrepareVdsoFile()
Denvironment.h60 bool GetThreadMmapsInProcess(pid_t pid, std::vector<ThreadMmap>* thread_mmaps);
Dcmd_record.cpp1212 std::vector<ThreadMmap> thread_mmaps; in DumpProcessMaps() local
1213 if (!GetThreadMmapsInProcess(pid, &thread_mmaps)) { in DumpProcessMaps()
1219 for (const auto& map : thread_mmaps) { in DumpProcessMaps()