Home
last modified time | relevance | path

Searched refs:map_name (Results 1 – 5 of 5) sorted by relevance

/system/extras/memory_replay/
DNativeInfo.cpp66 char* map_name = &buf[buf_start + name_pos]; in NativeGetInfo() local
67 if (strcmp(map_name, "[anon:libc_malloc]") == 0 || strcmp(map_name, "[heap]") == 0 || in NativeGetInfo()
68 strncmp(map_name, "[anon:scudo:", 12) == 0 || in NativeGetInfo()
69 strncmp(map_name, "[anon:GWP-ASan", 14) == 0) { in NativeGetInfo()
/system/unwinding/libunwindstack/
DMapInfo.cpp39 const std::string& map_name = name(); in ElfFileNotReadable() local
40 return memory_backed_elf() && !map_name.empty() && map_name[0] != '[' && in ElfFileNotReadable()
41 !android::base::StartsWith(map_name, "/memfd:"); in ElfFileNotReadable()
DUnwinder.cpp109 const std::string& map_name) { in ShouldStop() argument
113 auto pos = map_name.find_last_of('.'); in ShouldStop()
119 map_name.substr(pos + 1)) != map_suffixes_to_ignore->end(); in ShouldStop()
/system/unwinding/libunwindstack/tools/
Dunwind_for_offline.cpp269 std::string map_name; in SaveMapInfo() local
270 if (CopyMapInfo(tid, map_info, copied_files, &map_name)) { in SaveMapInfo()
271 WriteMapEntry(maps_fp, map_info, map_name); in SaveMapInfo()
/system/bpf/loader/
DLoader.cpp616 strlcpy(req.map_name, mapNames[i].c_str(), sizeof(req.map_name)); in createMaps()