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

References

projects/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp
  115     (*SingletonPtr->Printf)(
  142   Printf = Opts.Printf;
  498   Printf("*** GWP-ASan detected a memory error ***\n");
  499   ScopedEndOfReportDecorator Decorator(Printf);
  515   printErrorType(E, AccessPtr, Meta, Printf, ThreadID);
  521     PrintBacktrace(Trace, TraceLength, Printf);
  523     Printf("  <unknown (does your allocator support backtracing?)>\n\n");
  527     printAllocDeallocTraces(AccessPtr, Meta, Printf, PrintBacktrace);
projects/compiler-rt/lib/gwp_asan/platform_specific/guarded_pool_allocator_posix.cpp
   26     Printf("Failed to map guarded pool allocator memory, errno: %d\n", errno);
   27     Printf("  mmap(nullptr, %zu, ...) failed.\n", Size);
   35     Printf("Failed to set guarded pool allocator memory at as RW, errno: %d\n",
   37     Printf("  mprotect(%p, %zu, RW) failed.\n", Ptr, Size);
   48     Printf("Failed to set guarded pool allocator memory as inaccessible, "
   51     Printf("  mmap(%p, %zu, NONE, ...) failed.\n", Ptr, Size);