HomeSort by: relevance | last modified time | path
    Searched refs:LoadedModule (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common_linux.cc 31 static char linker_placeholder[sizeof(LoadedModule)] ALIGNED(64);
32 static LoadedModule *linker = nullptr;
34 static bool IsLinker(const LoadedModule& module) {
56 for (LoadedModule &module : modules) {
60 linker = reinterpret_cast<LoadedModule *>(linker_placeholder);
62 module = LoadedModule();
102 LoadedModule *GetLinker() { return linker; }
lsan_common_mac.cc 97 LoadedModule *GetLinker() { return nullptr; }
124 InternalMmapVector<LoadedModule> modules;
132 for (const __sanitizer::LoadedModule::AddressRange &range :
lsan_common.h 230 LoadedModule *GetLinker();
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_procmaps.h 50 void AddAddressRanges(LoadedModule *module);
81 void DumpListOfModules(InternalMmapVectorNoCtor<LoadedModule> *modules);
sanitizer_common.cc 131 void LoadedModule::set(const char *module_name, uptr base_address) {
137 void LoadedModule::set(const char *module_name, uptr base_address,
146 void LoadedModule::clear() {
161 void LoadedModule::addAddressRange(uptr beg, uptr end, bool executable,
171 bool LoadedModule::containsAddress(uptr address) const {
sanitizer_procmaps_common.cc 67 void MemoryMappedSegment::AddAddressRanges(LoadedModule *module) {
122 InternalMmapVectorNoCtor<LoadedModule> *modules) {
142 LoadedModule cur_module;
sanitizer_procmaps_mac.cc 50 static void NextSectionLoad(LoadedModule *module, MemoryMappedSegmentData *data,
61 void MemoryMappedSegment::AddAddressRanges(LoadedModule *module) {
351 InternalMmapVectorNoCtor<LoadedModule> *modules) {
359 LoadedModule *cur_module = nullptr;
364 modules->push_back(LoadedModule());
sanitizer_symbolizer.h 122 const LoadedModule *FindModuleForAddress(uptr address);
sanitizer_symbolizer_libcdep.cc 152 const LoadedModule *module = FindModuleForAddress(address);
168 static const LoadedModule *SearchForModule(const ListOfModules &modules,
178 const LoadedModule *Symbolizer::FindModuleForAddress(uptr address) {
184 const LoadedModule *module = SearchForModule(modules_, address);
sanitizer_common.h 694 class LoadedModule {
696 LoadedModule()
759 const LoadedModule *begin() const { return modules_.begin(); }
760 LoadedModule *begin() { return modules_.begin(); }
761 const LoadedModule *end() const { return modules_.end(); }
762 LoadedModule *end() { return modules_.end(); }
764 const LoadedModule &operator[](uptr i) const {
779 InternalMmapVectorNoCtor<LoadedModule> modules_;
sanitizer_linux_libcdep.cc 543 InternalMmapVectorNoCtor<LoadedModule> *modules;
559 LoadedModule cur_module;
592 static void procmapsInit(InternalMmapVectorNoCtor<LoadedModule> *modules) {
sanitizer_coverage_libcdep_new.cc 22 using AddressRange = LoadedModule::AddressRange;
sanitizer_mac.cc 1083 static inline bool CompareBaseAddress(const LoadedModule &a,
1084 const LoadedModule &b) {
1100 InternalMmapVector<LoadedModule> modules;
sanitizer_win.cc 626 LoadedModule cur_module;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_procmaps_test.cc 40 InternalMmapVector<LoadedModule> modules;
60 InternalMmapVector<LoadedModule> modules;
  /src/sys/external/bsd/compiler_rt/dist/lib/stats/
stats.cc 65 LoadedModule *mod = Symbolizer::GetOrInit()->FindModuleForAddress(

Completed in 21 milliseconds