| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stacktrace_printer.h | 50 void RenderFrame(InternalScopedString *buffer, const char *format, int frame_no, 55 void RenderSourceLocation(InternalScopedString *buffer, const char *file, 59 void RenderModuleLocation(InternalScopedString *buffer, const char *module, 67 void RenderData(InternalScopedString *buffer, const char *format,
|
| H A D | sanitizer_stacktrace_libcdep.cc | 27 InternalScopedString frame_desc(GetPageSizeCached() * 2); in Print() 28 InternalScopedString dedup_token(GetPageSizeCached()); in Print() 116 InternalScopedString frame_desc(GetPageSizeCached()); in __sanitizer_symbolize_pc() 145 InternalScopedString data_desc(GetPageSizeCached()); in __sanitizer_symbolize_global()
|
| H A D | sanitizer_stacktrace_printer.cc | 110 void RenderFrame(InternalScopedString *buffer, const char *format, int frame_no, in RenderFrame() 204 void RenderData(InternalScopedString *buffer, const char *format, in RenderData() 235 void RenderSourceLocation(InternalScopedString *buffer, const char *file, in RenderSourceLocation() 254 void RenderModuleLocation(InternalScopedString *buffer, const char *module, in RenderModuleLocation()
|
| H A D | sanitizer_symbolizer_report.cc | 35 InternalScopedString buff(kMaxSummaryLength); in ReportErrorSummary() 140 static void PrintMemoryByte(InternalScopedString *str, const char *before, in PrintMemoryByte() 150 InternalScopedString str(1024); in MaybeDumpInstructionBytes()
|
| H A D | sanitizer_symbolizer_markup.cc | 82 void RenderData(InternalScopedString *buffer, const char *format, in RenderData() 88 void RenderFrame(InternalScopedString *buffer, const char *format, int frame_no, in RenderFrame()
|
| H A D | sanitizer_suppressions.cc | 37 InternalScopedString exec(kMaxPathLength); in GetPathAssumingFileIsRelativeToExec() 57 InternalScopedString new_file_path(kMaxPathLength); in ParseFromFile()
|
| H A D | sanitizer_common_libcdep.cc | 96 InternalScopedString msg_copy(kErrorMessageBufferSize); in WriteToSyslog()
|
| H A D | sanitizer_libignore.cc | 42 InternalScopedString buf(kMaxPathLength); in OnLibraryLoaded()
|
| H A D | sanitizer_procmaps_common.cc | 124 InternalScopedString module_name(kMaxPathLength); in DumpListOfModules()
|
| H A D | sanitizer_common.cc | 91 InternalScopedString buff(kMaxSummaryLength); in ReportErrorSummary()
|
| H A D | sanitizer_symbolizer_win.cc | 224 InternalScopedString command_line(kMaxPathLength * 3); in StartSymbolizerSubprocess()
|
| H A D | sanitizer_procmaps_mac.cc | 357 InternalScopedString module_name(kMaxPathLength); in DumpListOfModules()
|
| H A D | sanitizer_printf.cc | 349 void InternalScopedString::append(const char *format, ...) { in append()
|
| H A D | sanitizer_common.h | 567 class InternalScopedString : public InternalMmapVector<char> { 569 explicit InternalScopedString(uptr max_length) in InternalScopedString() function
|
| H A D | sanitizer_posix.cc | 283 InternalScopedString buff(kMaxPathLength); in GetCodeRangeForFile()
|
| /freebsd-12.1/contrib/compiler-rt/lib/ubsan/ |
| H A D | ubsan_monitor.h | 25 InternalScopedString Buffer; 28 InternalScopedString &Msg);
|
| H A D | ubsan_monitor.cc | 20 InternalScopedString &Msg) in UndefinedBehaviorReport() 52 InternalScopedString &Buf = CurrentUBR->Buffer; in __ubsan_get_current_report_data()
|
| H A D | ubsan_diag.cc | 130 static void RenderHex(InternalScopedString *Buffer, UIntMax Val) { in RenderHex() 140 static void RenderLocation(InternalScopedString *Buffer, Location Loc) { in RenderLocation() 174 static void RenderText(InternalScopedString *Buffer, const char *Message, in RenderText() 274 InternalScopedString Buffer(1024); in PrintMemorySnippet() 342 InternalScopedString Buffer(1024); in ~Diag()
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_report.h | 38 void PrintGlobalNameIfASCII(InternalScopedString *str, const __asan_global &g); 39 void PrintGlobalLocation(InternalScopedString *str, const __asan_global &g); 41 void PrintMemoryByte(InternalScopedString *str, const char *before, u8 byte,
|
| H A D | asan_errors.cc | 333 InternalScopedString g1_loc(256), g2_loc(256); in Print() 350 InternalScopedString error_msg(256); in Print() 481 static void PrintShadowByte(InternalScopedString *str, const char *before, in PrintShadowByte() 486 static void PrintLegend(InternalScopedString *str) { in PrintLegend() 525 static void PrintShadowBytes(InternalScopedString *str, const char *before, in PrintShadowBytes() 544 InternalScopedString str(4096 * 8); in PrintShadowMemoryForAddress()
|
| H A D | asan_descriptions.cc | 52 InternalScopedString str(1024); in DescribeThread() 130 InternalScopedString str(4096); in PrintHeapChunkAccess() 247 InternalScopedString str(1024); in PrintAccessAndVarIntersection() 280 InternalScopedString str(4096); in DescribeAddressRelativeToGlobal()
|
| H A D | asan_globals.cc | 290 void PrintGlobalNameIfASCII(InternalScopedString *str, const __asan_global &g) { in PrintGlobalNameIfASCII() 308 void PrintGlobalLocation(InternalScopedString *str, const __asan_global &g) { in PrintGlobalLocation()
|
| H A D | asan_fake_stack.cc | 69 InternalScopedString str(kNumberOfSizeClasses * 50); in Destroy()
|
| /freebsd-12.1/contrib/compiler-rt/lib/hwasan/ |
| H A D | hwasan_report.cc | 241 InternalScopedString frame_desc(GetPageSizeCached() * 2); in PrintAddressDescription() 287 InternalScopedString s(GetPageSizeCached() * 8); in PrintTagsAroundAddr() 345 InternalScopedString s(GetPageSizeCached() * 8); in ReportTailOverwritten()
|
| H A D | hwasan.cc | 172 static void HwasanFormatMemoryUsage(InternalScopedString &s) { in HwasanFormatMemoryUsage() 209 InternalScopedString s(kMemoryUsageBufferSize); in UpdateMemoryUsage() 471 InternalScopedString s(kMemoryUsageBufferSize); in __hwasan_print_memory_usage()
|