Searched refs:module_offset (Results 1 – 10 of 10) 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()
|
D | sanitizer_symbolizer_posix_libcdep.cc | 78 cur->info.FillModuleInfo(res->info.module, res->info.module_offset); in ParseSymbolizePCOutput() 166 stack->info.module_offset)) { in SymbolizePC() 175 SendCommand(/*is_data*/ true, info->module, info->module_offset)) { in SymbolizeData() 177 info->start += (addr - info->module_offset); // Add the base address. in SymbolizeData() 185 uptr module_offset) { in SendCommand() argument 188 is_data ? "DATA " : "", module_name, module_offset); in SendCommand() 233 SendCommand(stack->info.module, stack->info.module_offset)) { in SymbolizePC() 245 const char *SendCommand(const char *module_name, uptr module_offset) { in SendCommand() argument 261 internal_snprintf(buffer_, kBufferSize, "0x%zx\n", module_offset); in SendCommand() 298 stack->info.module, stack->info.module_offset, buffer_, kBufferSize); in SymbolizePC() [all …]
|
D | sanitizer_symbolizer.h | 33 uptr module_offset; member 67 uptr module_offset; member 141 uptr *module_offset);
|
D | sanitizer_stacktrace_printer.cc | 54 buffer->append("0x%zx", info.module_offset); in RenderFrame() 94 RenderModuleLocation(buffer, info.module, info.module_offset, in RenderFrame() 104 (void *)info.module_offset); in RenderFrame()
|
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 | 53 info.module_offset = 0x200; in TEST() 84 info.module_offset = 0x200; in TEST()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_report.cc | 169 StripModuleName(global.module), global.module_offset); in PrintLocation() 359 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 | 133 RenderModuleLocation(&LocBuffer, Info.module, Info.module_offset, in renderLocation()
|