reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cpp
  116       buffer->append("%c", *p);
  122       buffer->append("%%");
  126       buffer->append("%zu", frame_no);
  129       buffer->append("0x%zx", info.address);
  132       buffer->append("%s", StripPathPrefix(info.module, strip_path_prefix));
  135       buffer->append("0x%zx", info.module_offset);
  138       buffer->append("%s",
  143       buffer->append("0x%zx", info.function_offset != AddressInfo::kUnknown
  148       buffer->append("%s", StripPathPrefix(info.file, strip_path_prefix));
  151       buffer->append("%d", info.line);
  154       buffer->append("%d", info.column);
  160         buffer->append("in %s",
  164           buffer->append("+0x%zx", info.function_offset);
  169       RenderSourceLocation(buffer, info.file, info.line, info.column, vs_style,
  175         RenderSourceLocation(buffer, info.file, info.line, info.column,
  178         RenderModuleLocation(buffer, info.module, info.module_offset,
  181         buffer->append("(<unknown module>)");
  190         RenderModuleLocation(buffer, StripModuleName(info.module),
  193         buffer->append("(%p)", (void *)info.address);