Searched refs:module_offset (Results 1 – 11 of 11) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_symbolizer_libcdep.cc | 66 uptr module_offset; in SymbolizePC() local 68 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset)) in SymbolizePC() 71 res->info.FillModuleInfo(module_name, module_offset); in SymbolizePC() 85 uptr module_offset; in SymbolizeData() local 86 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset)) in SymbolizeData() 90 info->module_offset = module_offset; in SymbolizeData() 141 uptr *module_offset) { in FindModuleNameAndOffsetForAddress() argument 146 *module_offset = address - module->base_address(); in FindModuleNameAndOffsetForAddress() 291 cur->info.FillModuleInfo(res->info.module, res->info.module_offset); in ParseSymbolizePCOutput() 325 stack->info.module_offset)) { in SymbolizePC() [all …]
|
D | sanitizer_symbolizer.h | 33 uptr module_offset; member 67 uptr module_offset; member 141 uptr *module_offset);
|
D | sanitizer_symbolizer_posix_libcdep.cc | 254 SendCommand(stack->info.module, stack->info.module_offset)) { in SymbolizePC() 266 const char *SendCommand(const char *module_name, uptr module_offset) { in SendCommand() argument 283 module_offset, dummy_address_); in SendCommand() 322 stack->info.module, stack->info.module_offset, buffer_, kBufferSize); in SymbolizePC() 328 bool result = __sanitizer_symbolize_data(info->module, info->module_offset, in SymbolizeData() 332 info->start += (addr - info->module_offset); // Add the base address. in SymbolizeData()
|
D | sanitizer_stacktrace_printer.cc | 55 buffer->append("0x%zx", info.module_offset); in RenderFrame() 95 RenderModuleLocation(buffer, info.module, info.module_offset, in RenderFrame() 107 (void *)info.module_offset); in RenderFrame()
|
D | sanitizer_symbolizer_internal.h | 128 uptr module_offset);
|
D | sanitizer_symbolizer.cc | 38 module_offset = mod_offset; in FillModuleInfo()
|
D | sanitizer_symbolizer_libbacktrace.cc | 98 info->FillModuleInfo(first->info.module, first->info.module_offset); in get_new_frame()
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_stacktrace_printer_test.cc | 69 info.module_offset = 0x200; in TEST() 100 info.module_offset = 0x200; in TEST()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_report.cc | 177 StripModuleName(global.module), global.module_offset); in PrintLocation() 181 global.module_offset); in PrintLocation() 376 info.line, (void *)info.module_offset); in PrintStack()
|
/external/compiler-rt/lib/tsan/go/ |
D | tsan_go.cc | 63 info.module_offset = ctx.off; in SymbolizeCode()
|
/external/compiler-rt/lib/ubsan/ |
D | ubsan_diag.cc | 162 RenderModuleLocation(&LocBuffer, Info.module, Info.module_offset, in renderLocation()
|