/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_report.cpp | 105 Printf(" [failed to restore the stack]\n\n"); in PrintStack() 115 Printf("%s\n", res.data()); in PrintStack() 117 Printf("\n"); 123 Printf(" (mutexes:"); in PrintMutexSet() 125 Printf(" %s M%u", m.write ? "write" : "read", m.id); in PrintMutexSet() 126 Printf(i == mset.Size() - 1 ? ")" : ","); in PrintMutexSet() 145 Printf("%s", d.Access()); in PrintMop() 147 Printf(" %s of size %d at %p by %s", in PrintMop() 154 Printf(" %s access of %s at %p by %s", in PrintMop() 159 Printf(" in PrintMop() [all...] |
H A D | tsan_platform_posix.cpp | 38 Printf(kShadowMemoryMappingWarning, SanitizerToolName, addr, addr + size, in DontDumpShadow() 40 Printf(kShadowMemoryMappingHint, "MADV_DONTDUMP", "use_madv_dontdump"); in DontDumpShadow() 49 Printf("FATAL: ThreadSanitizer can not mmap the shadow memory\n"); in InitializeShadowMemory() 50 Printf("FATAL: Make sure to compile with -fPIE and to link with -pie.\n"); in InitializeShadowMemory() 66 Printf("FATAL: ThreadSanitizer can not mmap the shadow memory\n"); in InitializeShadowMemory() 67 Printf("FATAL: Make sure to compile with -fPIE and to link with -pie.\n"); in InitializeShadowMemory() 91 Printf("FATAL: ThreadSanitizer can not protect [%zx,%zx]\n", beg, end); in ProtectRange() 92 Printf("FATAL: Make sure you are not using unlimited stack\n"); in ProtectRange() 132 Printf( in CheckAndProtect()
|
H A D | tsan_platform_linux.cpp | 293 Printf( in ReExecIfNeeded() 314 Printf("FATAL: ThreadSanitizer: unsupported VMA range\n"); in InitializePlatformEarly() 315 Printf("FATAL: Found %zd - Supported 39, 42 and 48\n", vmaSize); in InitializePlatformEarly() 320 Printf("FATAL: ThreadSanitizer: unsupported VMA range\n"); in InitializePlatformEarly() 321 Printf("FATAL: Found %zd - Supported 48\n", vmaSize); in InitializePlatformEarly() 328 Printf("FATAL: ThreadSanitizer: unsupported VMA range\n"); in InitializePlatformEarly() 329 Printf("FATAL: Found %zd - Supported 47\n", vmaSize); in InitializePlatformEarly() 334 Printf("FATAL: ThreadSanitizer: unsupported VMA range\n"); in InitializePlatformEarly() 335 Printf("FATAL: Found %zd - Supported 47\n", vmaSize); in InitializePlatformEarly() 342 Printf("FATAL: ThreadSanitizer: unsupported VMA range\n"); in InitializePlatformEarly() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_report.cpp | 41 Printf("%s", d.Origin()); in DescribeStackOrigin() 43 Printf( in DescribeStackOrigin() 48 Printf(" %sUninitialized value was created in the stack frame%s\n", in DescribeStackOrigin() 63 Printf(" %sUninitialized value was stored to memory at%s\n", d.Origin(), in DescribeOrigin() 75 Printf(" %sUninitialized value was created by a heap allocation%s\n", in DescribeOrigin() 79 Printf(" %sUninitialized value was created by a heap deallocation%s\n", in DescribeOrigin() 83 Printf(" %sMemory was marked as uninitialized%s\n", d.Origin(), in DescribeOrigin() 87 Printf(" %sMember fields were destroyed%s\n", d.Origin(), d.Default()); in DescribeOrigin() 90 Printf(" %sVirtual table ptr was destroyed%s\n", d.Origin(), in DescribeOrigin() 94 Printf(" in DescribeOrigin() [all...] |
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/ |
H A D | segv_handler_posix.cpp | 36 ScopedEndOfReportDecorator(gwp_asan::Printf_t Printf) : Printf(Printf) {} in ScopedEndOfReportDecorator() 37 ~ScopedEndOfReportDecorator() { Printf("*** End GWP-ASan report ***\n"); } in ~ScopedEndOfReportDecorator() 38 gwp_asan::Printf_t Printf; member 44 Printf_t Printf) { in printHeader() argument 97 Printf("%s%s at 0x%zx %sby thread %s here:\n", gwp_asan::ErrorToString(E), in printHeader() 110 SegvBacktrace_t SegvBacktrace, Printf_t Printf, in dumpReport() argument 114 assert(Printf && "dumpReport missing Printf."); in dumpReport() 129 Printf("*** GWP-ASan detected a memory error ***\n"); in dumpReport() 130 ScopedEndOfReportDecorator Decorator(Printf); in dumpReport() 131 Printf(kUnknownCrashText); in dumpReport() [all …]
|
H A D | options_parser.cpp | 25 #define InvokeIfNonNull(Printf, ...) \ argument 27 if (Printf) \ 28 Printf(__VA_ARGS__); \ 34 : Printf(PrintfForWarnings) {} in OptionParser() 58 gwp_asan::Printf_t Printf = nullptr; member in __anone23ff92f0111::OptionParser 67 InvokeIfNonNull(Printf, "GWP-ASan: Available options:\n"); in printOptionDescriptions() 69 InvokeIfNonNull(Printf, "\t%s\n\t\t- %s\n", Options[I].Name, in printOptionDescriptions() 92 InvokeIfNonNull(Printf, "GWP-ASan: Expected '=' when parsing option '%s'.", in parseOption() 103 InvokeIfNonNull(Printf, "GWP-ASan: Unterminated string in option '%s'.", in parseOption() 124 InvokeIfNonNull(Printf, "GWP-ASan: Options parsing failed.\n"); in parseOptions() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_report.cpp | 106 Printf( in MaybePrintAndroidHelpUrl() 292 Printf("\nPotentially referenced stack objects:\n"); in PrintStackAllocations() 297 Printf("%s", d.Error()); in PrintStackAllocations() 298 Printf("Cause: %s\n", cause); in PrintStackAllocations() 299 Printf("%s", d.Default()); in PrintStackAllocations() 300 Printf("%s", d.Location()); in PrintStackAllocations() 305 Printf( in PrintStackAllocations() 312 Printf("%s\n", d.Default()); in PrintStackAllocations() 323 Printf("Previously allocated frames:\n"); in PrintStackAllocations() 342 Printf("%s\n", frame_desc.data()); in PrintStackAllocations() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerLoop.cpp | 54 Printf("MallocFreeTracer: START\n"); in Start() 61 Printf("MallocFreeTracer: STOP %zd %zd (%s)\n", Mallocs.load(), in Stop() 105 Printf("MALLOC[%zd] %p %zd\n", N, ptr, size); in MallocHook() 118 Printf("FREE[%zd] %p\n", N, ptr); in FreeHook() 128 Printf("==%d== ERROR: libFuzzer: out-of-memory (malloc(%zd))\n", GetPid(), in HandleMalloc() 130 Printf(" To change the out-of-memory limit use -rss_limit_mb=<N>\n\n"); in HandleMalloc() 133 Printf("SUMMARY: libFuzzer: out-of-memory\n"); in HandleMalloc() 179 Printf("; base unit: %s\n", Sha1ToString(BaseSha1).c_str()); in DumpCurrentUnit() 218 Printf("INFO: signal received, trying to exit gracefully\n"); in StaticGracefulExitCallback() 222 Printf(" in StaticFileSizeExceedCallback() [all...] |
H A D | FuzzerDriver.cpp | 93 Printf("Usage:\n"); in PrintHelp() 95 Printf("\nTo run fuzzing pass 0 or more directories.\n"); in PrintHelp() 96 Printf("%s [-flag1=val1 [-flag2=val2 ...] ] [dir1 [dir2 ...] ]\n", Prog); in PrintHelp() 98 Printf("\nTo run individual tests without fuzzing pass 1 or more files:\n"); in PrintHelp() 99 Printf("%s [-flag1=val1 [-flag2=val2 ...] ] file1 [file2 ...]\n", Prog); in PrintHelp() 101 Printf("\nFlags: (strictly in form -flag=value)\n"); in PrintHelp() 109 Printf(" %s", D.Name); in PrintHelp() 111 Printf(" "); in PrintHelp() 112 Printf("\t"); in PrintHelp() 113 Printf("%d\t%s\n", D.Default, D.Description); in PrintHelp() [all …]
|
H A D | FuzzerUtil.cpp | 30 Printf("0x%x,", (unsigned)Data[i]); in PrintHexArray() 31 Printf("%s", PrintAfter); in PrintHexArray() 40 Printf("\\\\"); in PrintASCIIByte() 42 Printf("\\\""); in PrintASCIIByte() 44 Printf("%c", Byte); in PrintASCIIByte() 46 Printf("\\%03o", Byte); in PrintASCIIByte() 52 Printf("%s", PrintAfter); in PrintASCII() 129 Printf("ParseDictionaryFile: file does not exist or is empty\n"); in ParseDictionaryFile() 146 Printf("ParseDictionaryFile: error in line %d\n\t\t%s\n", LineNo, in ParseDictionaryFile() 202 Printf("%s", DescribePC(SymbolizedFMT, PC).c_str()); in PrintPC() [all …]
|
H A D | FuzzerCorpus.h | 217 Printf("ADD_TO_CORPUS %zd NF %zd\n", Inputs.size(), NumFeatures); in AddToCorpus() 257 Printf("%c", C); in PrintUnit() 264 Printf("{"); in PrintFeatureSet() 266 Printf("%u,", Feature); in PrintFeatureSet() 267 Printf("}"); in PrintFeatureSet() 273 Printf("======= CORPUS:\n"); in PrintCorpus() 277 Printf("[%2d] ", i); in PrintCorpus() 278 Printf("%s sz=%zd ", Sha1ToString(II->Sha1).c_str(), II->U.size()); in PrintCorpus() 280 Printf(" "); in PrintCorpus() 282 Printf("\ in PrintCorpus() [all...] |
H A D | FuzzerTracePC.cpp | 82 Printf("INFO: Loaded %zd modules (%zd inline 8-bit counters): ", in PrintModuleInfo() 85 Printf("%zd [%p, %p), ", Modules[i].Size(), Modules[i].Start(), in PrintModuleInfo() 87 Printf("\n"); in PrintModuleInfo() 90 Printf("INFO: Loaded %zd PC tables (%zd PCs): ", NumPCTables, in PrintModuleInfo() 93 Printf("%zd [%p,%p), ", ModulePCTable[i].Stop - ModulePCTable[i].Start, in PrintModuleInfo() 96 Printf("\n"); in PrintModuleInfo() 99 Printf("ERROR: The size of coverage PC tables does not match the\n" in PrintModuleInfo() 108 Printf("INFO: %zd Extra Counters\n", NumExtraCounters); in PrintModuleInfo() 112 Printf("WARNING: The coverage PC tables may produce up to %zu features.\n" in PrintModuleInfo() 166 Printf("\n"); in UpdateObservedPCs() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | DumpDataExtractor.cpp | 162 s->Printf("invalid target"); in DumpInstructions() 175 s.Printf("\\e"); in TryDumpSpecialEscapedChar() 178 s.Printf("\\a"); in TryDumpSpecialEscapedChar() 181 s.Printf("\\b"); in TryDumpSpecialEscapedChar() 184 s.Printf("\\f"); in TryDumpSpecialEscapedChar() 187 s.Printf("\\n"); in TryDumpSpecialEscapedChar() 190 s.Printf("\\r"); in TryDumpSpecialEscapedChar() 193 s.Printf("\\t"); in TryDumpSpecialEscapedChar() 196 s.Printf("\\v"); in TryDumpSpecialEscapedChar() 199 s.Printf("\\0"); in TryDumpSpecialEscapedChar() [all …]
|
H A D | Declaration.cpp | 22 s->Printf(":%u", m_line); in Dump() 24 s->Printf(":%u", m_column); in Dump() 27 s->Printf(", line = %u", m_line); in Dump() 29 s->Printf(":%u", m_column); in Dump() 31 s->Printf(", column = %u", m_column); in Dump() 43 s->Printf(":%u", m_line); in DumpStopContext() 45 s->Printf(":%u", m_column); in DumpStopContext() 48 s->Printf(" line %u", m_line); in DumpStopContext() 50 s->Printf(":%u", m_column); in DumpStopContext()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanRunToAddress.cpp | 92 s->Printf("run to address with no addresses given."); in GetDescription() 95 s->Printf("run to address: "); in GetDescription() 97 s->Printf("run to addresses: "); in GetDescription() 101 s->Printf(" "); in GetDescription() 105 s->Printf("run to address with no addresses given."); in GetDescription() 108 s->Printf("Run to address: "); in GetDescription() 110 s->Printf("Run to addresses: "); in GetDescription() 115 s->Printf("\n"); in GetDescription() 120 s->Printf(" using breakpoint: %d - ", m_break_ids[i]); in GetDescription() 126 s->Printf("but the breakpoint has been deleted."); in GetDescription() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_rtl.cpp | 117 Printf("MemProfiler exit stats:\n"); in memprof_atexit() 130 Printf("|| `[%p, %p]` || HighMem ||\n", (void *)kHighMemBeg, in PrintAddressSpaceLayout() 132 Printf("|| `[%p, %p]` || HighShadow ||\n", (void *)kHighShadowBeg, in PrintAddressSpaceLayout() 135 Printf("|| `[%p, %p]` || ShadowGap ||\n", (void *)kShadowGapBeg, in PrintAddressSpaceLayout() 138 Printf("|| `[%p, %p]` || LowShadow ||\n", (void *)kLowShadowBeg, in PrintAddressSpaceLayout() 140 Printf("|| `[%p, %p]` || LowMem ||\n", (void *)kLowMemBeg, in PrintAddressSpaceLayout() 143 Printf("MemToShadow(shadow): %p %p", (void *)MEM_TO_SHADOW(kLowShadowBeg), in PrintAddressSpaceLayout() 146 Printf(" %p %p", (void *)MEM_TO_SHADOW(kHighShadowBeg), in PrintAddressSpaceLayout() 149 Printf("\n"); in PrintAddressSpaceLayout() 150 Printf("malloc_context_size=%zu\n", in PrintAddressSpaceLayout() [all …]
|
H A D | memprof_stats.cpp | 33 Printf("%s", prefix); in PrintMallocStatsArray() 37 Printf("%zu:%zu; ", i, array[i]); in PrintMallocStatsArray() 39 Printf("\n"); in PrintMallocStatsArray() 43 Printf("Stats: %zuM malloced (%zuM for overhead) by %zu calls\n", in Print() 45 Printf("Stats: %zuM realloced by %zu calls\n", realloced >> 20, reallocs); in Print() 46 Printf("Stats: %zuM freed by %zu calls\n", freed >> 20, frees); in Print() 47 Printf("Stats: %zuM really freed by %zu calls\n", really_freed >> 20, in Print() 49 Printf("Stats: %zuM (%zuM-%zuM) mmaped; %zu maps, %zu unmaps\n", in Print() 54 Printf("Stats: malloc large: %zu\n", malloc_large); in Print() 119 Printf("Stats: StackDepot: %zd ids; %zdM allocated\n", in PrintAccumulatedStats()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | UnwindPlan.cpp | 120 s.Printf("CFA%+d", m_location.offset); in Dump() 130 s.Printf("AFA%+d", m_location.offset); in Dump() 140 s.Printf("=%s", other_reg_info->name); in Dump() 142 s.Printf("=reg(%u)", m_location.reg_num); in Dump() 165 s.Printf("reg(%u)", reg_num); in DumpRegisterName() 197 s.Printf("%+3d", m_value.reg.offset); in Dump() 212 s.Printf("RaSearch@SP%+d", m_value.ra_search_offset); in Dump() 228 s.Printf("0x%16.16" PRIx64 ": CFA=", base_addr + GetOffset()); in Dump() 230 s.Printf("%4" PRId64 ": CFA=", GetOffset()); in Dump() 235 s.Printf(" AFA="); in Dump() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_rtl.cpp | 317 Printf("AddressSanitizer exit stats:\n"); in asan_atexit() 322 Printf("asan_mapping.h:%zd -- %zd\n", i, AsanMappingProfile[i]); in asan_atexit() 338 Printf("|| `[%p, %p]` || HighMem ||\n", in PrintAddressSpaceLayout() 340 Printf("|| `[%p, %p]` || HighShadow ||\n", in PrintAddressSpaceLayout() 344 Printf("|| `[%p, %p]` || ShadowGap3 ||\n", in PrintAddressSpaceLayout() 346 Printf("|| `[%p, %p]` || MidMem ||\n", in PrintAddressSpaceLayout() 348 Printf("|| `[%p, %p]` || ShadowGap2 ||\n", in PrintAddressSpaceLayout() 350 Printf("|| `[%p, %p]` || MidShadow ||\n", in PrintAddressSpaceLayout() 353 Printf("|| `[%p, %p]` || ShadowGap ||\n", in PrintAddressSpaceLayout() 356 Printf("|| `[%p, %p]` || LowShadow ||\n", in PrintAddressSpaceLayout() [all …]
|
H A D | asan_descriptions.cpp | 55 Printf("%s", str.data()); in DescribeThread() 60 Printf("%s", str.data()); in DescribeThread() 152 Printf("%s", str.data()); in PrintHeapChunkAccess() 183 Printf( in DescribeAddressIfHeap() 265 Printf("%s", str.data()); in PrintAccessAndVarIntersection() 298 Printf("%s", str.data()); in DescribeAddressRelativeToGlobal() 321 Printf("Address %p is located in the %s area.\n", (void *)addr, in Print() 331 Printf(" registered at:\n"); in Print() 359 Printf("%s", d.Location()); in Print() 360 Printf("Address %p is located in stack of thread %s", (void *)addr, in Print() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | CoreMedia.cpp | 56 stream.Printf("indefinite"); in CMTimeSummaryProvider() 61 stream.Printf("+oo"); in CMTimeSummaryProvider() 66 stream.Printf("-oo"); in CMTimeSummaryProvider() 74 stream.Printf("%" PRId64 " seconds", value); in CMTimeSummaryProvider() 77 stream.Printf("%" PRId64 " half seconds", value); in CMTimeSummaryProvider() 80 stream.Printf("%" PRId64 " third%sof a second", value, in CMTimeSummaryProvider() 84 stream.Printf("%" PRId64 " %" PRId32 "th%sof a second", value, timescale, in CMTimeSummaryProvider()
|
H A D | CF.cpp | 39 stream.Printf("%04d-%02d-%02d %02d:%02d:%02d %s", tm_date->tm_year + 1900, in CFAbsoluteTimeSummaryProvider() 100 stream.Printf("\"%u value%s\"", count, (count == 1 ? "" : "s")); in CFBagSummaryProvider() 173 stream.Printf("%c%c%c%c %c%c%c%c ", (bit7 ? '1' : '0'), (bit6 ? '1' : '0'), in CFBitVectorSummaryProvider() 190 stream.Printf("%c", bit7 ? '1' : '0'); in CFBitVectorSummaryProvider() 194 stream.Printf("%c", bit6 ? '1' : '0'); in CFBitVectorSummaryProvider() 198 stream.Printf("%c", bit5 ? '1' : '0'); in CFBitVectorSummaryProvider() 202 stream.Printf("%c", bit4 ? '1' : '0'); in CFBitVectorSummaryProvider() 206 stream.Printf("%c", bit3 ? '1' : '0'); in CFBitVectorSummaryProvider() 210 stream.Printf("%c", bit2 ? '1' : '0'); in CFBitVectorSummaryProvider() 214 stream.Printf("%c", bit1 ? '1' : '0'); in CFBitVectorSummaryProvider() [all …]
|
/freebsd/usr.sbin/traceroute/ |
H A D | traceroute.c | 262 #define Printf (void)printf macro 1009 Printf("%2d ", ttl); in main() 1060 Printf(" %.*f ms", precis, T); in main() 1065 Printf(" (ecn=passed)"); in main() 1068 Printf(" (ecn=bleached)"); in main() 1071 Printf(" (ecn=congested)"); in main() 1074 Printf(" (ecn=mangled)"); in main() 1079 Printf("\n"); in main() 1080 Printf("%*.*s%s\n", in main() 1092 Printf(" !"); in main() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | REPL.cpp | 107 error_sp->Printf("REPL requires a running target process.\n"); in IOHandlerActivated() 196 error_sp->Printf("no such file at path '%s'\n", path.c_str()); in ReadCode() 200 error_sp->Printf("could not read file at path '%s'\n", path.c_str()); in ReadCode() 206 error_sp->Printf("file at path '%s' too large: " in ReadCode() 213 error_sp->Printf("could not create buffer for file at path '%s'\n", in ReadCode() 389 error_sp->Printf("%s\n", error.AsCString()); in IOHandlerInputComplete() 396 error_sp->Printf(ANSI_ESCAPE1(ANSI_FG_COLOR_RED)); in IOHandlerInputComplete() 397 error_sp->Printf(ANSI_ESCAPE1(ANSI_CTRL_BOLD)); in IOHandlerInputComplete() 399 error_sp->Printf("Execution interrupted. "); in IOHandlerInputComplete() 401 error_sp->Printf(ANSI_ESCAPE in IOHandlerInputComplete() [all...] |
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectHelp.cpp | 31 s->Printf("'%s' is not a known command.\n", command_str.c_str()); in GenerateAdditionalHelpAvenuesMessage() 32 s->Printf("Try '%shelp' to see a current list of commands.\n", in GenerateAdditionalHelpAvenuesMessage() 35 s->Printf("Try '%sapropos %s' for a list of related commands.\n", in GenerateAdditionalHelpAvenuesMessage() 39 s->Printf("Try '%stype lookup %s' for information on types, methods, " in GenerateAdditionalHelpAvenuesMessage() 127 s.Printf("ambiguous command %s", cmd_string.c_str()); in DoExecute() 130 s.Printf("\n\t%s", matches.GetStringAtIndex(match_idx)); in DoExecute() 132 s.Printf("\n"); in DoExecute() 146 result.GetOutputStream().Printf( in DoExecute() 160 result.GetOutputStream().Printf("\n'%s' is an abbreviation for %s\n", in DoExecute() 165 output_strm.Printf("Help requested with ambiguous command name, possible " in DoExecute() [all …]
|