Searched refs:thread_mmaps (Results 1 – 4 of 4) sorted by relevance
/system/extras/simpleperf/ |
D | JITDebugReader.cpp | 386 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()
|
D | environment.cpp | 237 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()
|
D | environment.h | 60 bool GetThreadMmapsInProcess(pid_t pid, std::vector<ThreadMmap>* thread_mmaps);
|
D | cmd_record.cpp | 1212 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()
|