| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stacktrace_printer.cpp | 155 buffer->AppendF(" "); in MaybeBuildIdToBuffer() 156 buffer->AppendF("(BuildId: "); in MaybeBuildIdToBuffer() 160 buffer->AppendF(")"); in MaybeBuildIdToBuffer() 182 buffer->AppendF("%c", *p); in RenderFrame() 207 buffer->AppendF("%s", in RenderFrame() 228 buffer->AppendF( in RenderFrame() 307 buffer->AppendF("%c", *p); in RenderData() 341 buffer->AppendF(",%d", column); in RenderSourceLocation() 342 buffer->AppendF(")"); in RenderSourceLocation() 348 buffer->AppendF(":%d", line); in RenderSourceLocation() [all …]
|
| H A D | sanitizer_symbolizer_markup.cpp | 31 buffer->AppendF(kFormatData, reinterpret_cast<void *>(DI->start)); in RenderData() 46 buffer->AppendF(kFormatFrame, frame_no, reinterpret_cast<void *>(address)); in RenderFrame() 98 buildIdBuffer.AppendF("%02x", module.uuid()[i]); in RenderModule() 100 buffer->AppendF(kFormatModule, moduleId, module.full_name(), in RenderModule() 122 buffer->AppendF(kFormatMmap, reinterpret_cast<void *>(range.beg), in RenderMmaps()
|
| H A D | sanitizer_stacktrace_libcdep.cpp | 51 output_->AppendF("%c", frame_delimiter_); in ProcessAddressFrames() 66 dedup_token_->AppendF("--"); in ExtendDedupToken() 102 output->AppendF(" <empty stack>\n\n"); in PrintTo() 114 output->AppendF("\n"); in PrintTo() 118 output->AppendF("DEDUP_TOKEN: %s\n", dedup_token.data()); in PrintTo() 201 output.AppendF("<can't symbolize>"); in __sanitizer_symbolize_pc()
|
| H A D | sanitizer_symbolizer_report.cpp | 58 buff.AppendF("%s ", error_type); in ReportErrorSummary() 191 str->AppendF("%s%s%x%x%s ", before, d.MemoryByte(), byte >> 4, byte & 15, in PrintMemoryByte() 199 str.AppendF("First 16 instruction bytes at pc: "); in MaybeDumpInstructionBytes() 204 str.AppendF("\n"); in MaybeDumpInstructionBytes() 206 str.AppendF("unaccessible\n"); in MaybeDumpInstructionBytes()
|
| H A D | sanitizer_stoptheworld_linux_libcdep.cpp | 568 auto AppendF = [&](uptr regset) { in GetRegistersAndSP() local 599 bool fail = !AppendF(NT_PRSTATUS); in GetRegistersAndSP() 603 if (regs && AppendF(regs)) in GetRegistersAndSP()
|
| H A D | sanitizer_symbolizer_win.cpp | 234 command_line.AppendF("\"%s\" ", arg); in StartSymbolizerSubprocess()
|
| H A D | sanitizer_common.cpp | 118 buff.AppendF("SUMMARY: %s: %s", in ReportErrorSummary()
|
| H A D | sanitizer_printf.cpp | 347 void InternalScopedString::AppendF(const char *format, ...) { in AppendF() function in __sanitizer::InternalScopedString
|
| H A D | sanitizer_malloc_mac.inc | 126 new_name.AppendF(COMMON_MALLOC_ZONE_NAME "-%s", name);
|
| H A D | sanitizer_common.h | 650 void AppendF(const char *format, ...) FORMAT(2, 3);
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_diag.cpp | 150 Buffer->AppendF("<unknown>"); in RenderLocation() 177 Buffer->AppendF("<unknown>"); in RenderLocation() 186 Buffer->AppendF("%c", *Msg); in RenderText() 192 Buffer->AppendF("%s", A.String); in RenderText() 292 Buffer.AppendF("\n"); in PrintMemorySnippet() 308 Buffer.AppendF("%c", Pad); in PrintMemorySnippet() 309 Buffer.AppendF("%c", Pad); in PrintMemorySnippet() 311 Buffer.AppendF("%c", Byte); in PrintMemorySnippet() 328 Buffer.AppendF(" "); in PrintMemorySnippet() 330 Buffer.AppendF("\n"); in PrintMemorySnippet() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_descriptions.cpp | 58 str.AppendF(" created by %s here:\n", in DescribeThread() 144 str.AppendF( in PrintHeapChunkAccess() 148 str.AppendF(" %zu-byte region [%p,%p)\n", descr.chunk_size, in PrintHeapChunkAccess() 246 str.AppendF(" [%zd, %zd)", var.beg, var_end); in PrintAccessAndVarIntersection() 248 str.AppendF(" '"); in PrintAccessAndVarIntersection() 250 str.AppendF("%c", var.name_pos[i]); in PrintAccessAndVarIntersection() 252 str.AppendF("'"); in PrintAccessAndVarIntersection() 254 str.AppendF(" (line %zd)", var.line); in PrintAccessAndVarIntersection() 263 str.AppendF("\n"); in PrintAccessAndVarIntersection() 292 str.AppendF(" global variable '%s' defined in '", in DescribeAddressRelativeToGlobal() [all …]
|
| H A D | asan_globals.cpp | 299 str->AppendF(" '%s' is ascii string '%s'\n", MaybeDemangleGlobalName(g.name), in PrintGlobalNameIfASCII() 307 str->AppendF("%s:%d", info.file, static_cast<int>(info.line)); in PrintGlobalLocation() 310 str->AppendF("%s", g.gcc_location->filename ? g.gcc_location->filename in PrintGlobalLocation() 313 str->AppendF(":%d", g.gcc_location->line_no); in PrintGlobalLocation() 315 str->AppendF(":%d", g.gcc_location->column_no); in PrintGlobalLocation() 317 str->AppendF("%s", g.module_name); in PrintGlobalLocation() 320 str->AppendF(" in %s", info.module); in PrintGlobalLocation()
|
| H A D | asan_errors.cpp | 382 error_msg.AppendF("%s: global '%s' at %s", scariness.GetDescription(), in Print() 520 str->AppendF( in PrintLegend() 525 str->AppendF(" Partially addressable: "); in PrintLegend() 528 str->AppendF("\n"); in PrintLegend() 562 str->AppendF("%s%p:", before, in PrintShadowBytes() 571 str->AppendF("\n"); in PrintShadowBytes() 580 str.AppendF("Shadow bytes around the buggy address:\n"); in PrintShadowMemoryForAddress()
|
| H A D | asan_fake_stack.cpp | 71 str.AppendF("%zd: %zd/%zd; ", class_id, hint_position_[class_id], in Destroy()
|
| H A D | asan_report.cpp | 63 str->AppendF("%s%s%x%x%s%s", before, in PrintMemoryByte()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_report.cpp | 391 s.AppendF("\n"); in PrintTagInfoAroundAddr() 400 s.AppendF( in PrintTagsAroundAddr() 410 s.AppendF( in PrintTagsAroundAddr() 421 s.AppendF(".."); in PrintTagsAroundAddr() 424 s.AppendF( in PrintTagsAroundAddr() 950 s.AppendF("Tail contains: "); in ~TailOverwrittenReport() 953 s.AppendF("\n"); in ~TailOverwrittenReport() 954 s.AppendF("Expected: "); in ~TailOverwrittenReport() 957 s.AppendF("\n"); in ~TailOverwrittenReport() 958 s.AppendF(" "); in ~TailOverwrittenReport() [all …]
|
| H A D | hwasan.cpp | 175 s.AppendF( in HwasanFormatMemoryUsage()
|
| /freebsd-14.2/lib/libclang_rt/asan/ |
| H A D | warn.txt | 3 31 | buffer->AppendF(kFormatData, DI->start); 10 46 | buffer->AppendF(kFormatFrame, frame_no, address); 24 99 | buffer->AppendF(kFormatModule, moduleId, module.full_name(), 31 121 | buffer->AppendF(kFormatMmap, range.beg, range.end - range.beg, moduleId, 38 121 | buffer->AppendF(kFormatMmap, range.beg, range.end - range.beg, moduleId, 45 121 | buffer->AppendF(kFormatMmap, range.beg, range.end - range.beg, moduleId, 52 121 | buffer->AppendF(kFormatMmap, range.beg, range.end - range.beg, moduleId,
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_descriptions.cpp | 52 str.AppendF("Thread %s", MemprofThreadIdAndName(context).c_str()); in DescribeThread() 54 str.AppendF(" created by unknown thread\n"); in DescribeThread() 58 str.AppendF(" created by %s here:\n", in DescribeThread()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan.cpp | 826 out->AppendF( in PrintOriginTraceFramesToStr() 830 out->AppendF(" %sOrigin value: 0x%x, Taint value was created at%s\n", in PrintOriginTraceFramesToStr() 852 out->AppendF(" %sTaint value 0x%x (at %p) origin tracking (%s)%s\n", in PrintOriginTraceToStr()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_common.cpp | 957 summary.AppendF("%zu byte(s) leaked in %zu allocation(s).", bytes, in PrintSummary()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_rtl.cpp | 449 filename.AppendF("%s.%d", fname, (int)internal_getpid()); in InitializeMemoryProfiler()
|