Home
last modified time | relevance | path

Searched refs:module_offset (Results 1 – 10 of 10) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_libcdep.cc66 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()
Dsanitizer_symbolizer_posix_libcdep.cc78 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 …]
Dsanitizer_symbolizer.h33 uptr module_offset; member
67 uptr module_offset; member
141 uptr *module_offset);
Dsanitizer_stacktrace_printer.cc54 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()
Dsanitizer_symbolizer.cc38 module_offset = mod_offset; in FillModuleInfo()
Dsanitizer_symbolizer_libbacktrace.cc98 info->FillModuleInfo(first->info.module, first->info.module_offset); in get_new_frame()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_stacktrace_printer_test.cc53 info.module_offset = 0x200; in TEST()
84 info.module_offset = 0x200; in TEST()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_report.cc169 StripModuleName(global.module), global.module_offset); in PrintLocation()
359 info.line, (void *)info.module_offset); in PrintStack()
/external/compiler-rt/lib/tsan/go/
Dtsan_go.cc63 info.module_offset = ctx.off; in SymbolizeCode()
/external/compiler-rt/lib/ubsan/
Dubsan_diag.cc133 RenderModuleLocation(&LocBuffer, Info.module, Info.module_offset, in renderLocation()