Searched refs:Printf (Results 1 - 25 of 405) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTMetadata.cpp18 s->Printf("uid=0x%" PRIx64, uid);
23 s->Printf("isa_ptr=0x%" PRIx64, isa_ptr);
28 s->Printf("obj_ptr_name=\"%s\" ", obj_ptr_name);
32 s->Printf("is_dynamic_cxx=%i ", m_is_dynamic_cxx);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cpp105 Printf(" [failed to restore the stack]\n\n");
115 Printf("%s\n", res.data());
117 Printf("\n");
123 Printf(" (mutexes:");
125 Printf(" %s M%u", m.write ? "write" : "read", m.id);
126 Printf(i == mset.Size() - 1 ? ")" : ",");
145 Printf("%s", d.Access());
147 Printf(" %s of size %d at %p by %s",
154 Printf(" %s access of %s at %p by %s",
159 Printf("
[all...]
H A Dtsan_platform_posix.cpp38 Printf(kShadowMemoryMappingWarning, SanitizerToolName, addr, addr + size,
40 Printf(kShadowMemoryMappingHint, "MADV_DONTDUMP", "use_madv_dontdump");
49 Printf("FATAL: ThreadSanitizer can not mmap the shadow memory\n");
50 Printf("FATAL: Make sure to compile with -fPIE and to link with -pie.\n");
66 Printf("FATAL: ThreadSanitizer can not mmap the shadow memory\n");
67 Printf("FATAL: Make sure to compile with -fPIE and to link with -pie.\n");
91 Printf("FATAL: ThreadSanitizer can not protect [%zx,%zx]\n", beg, end);
92 Printf("FATAL: Make sure you are not using unlimited stack\n");
132 Printf(
/freebsd-current/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_report.cpp41 Printf("%s", d.Origin());
43 Printf(
48 Printf(" %sUninitialized value was created in the stack frame%s\n",
63 Printf(" %sUninitialized value was stored to memory at%s\n", d.Origin(),
75 Printf(" %sUninitialized value was created by a heap allocation%s\n",
79 Printf(" %sUninitialized value was created by a heap deallocation%s\n",
83 Printf(" %sMemory was marked as uninitialized%s\n", d.Origin(),
87 Printf(" %sMember fields were destroyed%s\n", d.Origin(), d.Default());
90 Printf(" %sVirtual table ptr was destroyed%s\n", d.Origin(),
94 Printf("
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Dbacktrace_linux_libc.cpp37 gwp_asan::Printf_t Printf) {
39 Printf(" <not found (does your allocator support backtracing?)>\n\n");
48 Printf(" #%zu %p\n", i, Trace[i]);
50 Printf(" #%zu %s\n", i, BacktraceSymbols[i]);
53 Printf("\n");
36 PrintBacktrace(uintptr_t *Trace, size_t TraceLength, gwp_asan::Printf_t Printf) argument
H A Dsegv_handler_posix.cpp36 ScopedEndOfReportDecorator(gwp_asan::Printf_t Printf) : Printf(Printf) {} argument
37 ~ScopedEndOfReportDecorator() { Printf("*** End GWP-ASan report ***\n"); }
38 gwp_asan::Printf_t Printf; member in struct:__anon999::ScopedEndOfReportDecorator
44 Printf_t Printf) {
47 // appended to a log file automatically per Printf() call.
97 Printf("%s%s at 0x%zx %sby thread %s here:\n", gwp_asan::ErrorToString(E),
110 SegvBacktrace_t SegvBacktrace, Printf_t Printf,
114 assert(Printf
42 printHeader(Error E, uintptr_t AccessPtr, const gwp_asan::AllocationMetadata *Metadata, Printf_t Printf) argument
108 dumpReport(uintptr_t ErrorPtr, const gwp_asan::AllocatorState *State, const gwp_asan::AllocationMetadata *Metadata, SegvBacktrace_t SegvBacktrace, Printf_t Printf, PrintBacktrace_t PrintBacktrace, void *Context) argument
240 installSignalHandlers(gwp_asan::GuardedPoolAllocator *GPA, Printf_t Printf, PrintBacktrace_t PrintBacktrace, SegvBacktrace_t SegvBacktrace, bool Recoverable) argument
[all...]
H A Dsegv_handler.h24 void installSignalHandlers(gwp_asan::GuardedPoolAllocator *GPA, Printf_t Printf,
H A Doptions_parser.cpp25 #define InvokeIfNonNull(Printf, ...) \
27 if (Printf) \
28 Printf(__VA_ARGS__); \
34 : Printf(PrintfForWarnings) {}
58 gwp_asan::Printf_t Printf = nullptr; member in class:__anon2477::OptionParser
67 InvokeIfNonNull(Printf, "GWP-ASan: Available options:\n");
69 InvokeIfNonNull(Printf, "\t%s\n\t\t- %s\n", Options[I].Name,
92 InvokeIfNonNull(Printf, "GWP-ASan: Expected '=' when parsing option '%s'.",
103 InvokeIfNonNull(Printf, "GWP-ASan: Unterminated string in option '%s'.",
124 InvokeIfNonNull(Printf, "GW
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueString.cpp21 strm.Printf("(%s)", GetTypeAsCString());
31 strm.Printf("%s", expanded_escape_value.c_str());
33 strm.Printf("\"%s\"", expanded_escape_value.c_str());
36 strm.Printf("%s", m_current_value.c_str());
38 strm.Printf("\"%s\"", m_current_value.c_str());
H A DOptionValueLanguage.cpp23 strm.Printf("(%s)", GetTypeAsCString());
53 error_strm.Printf("invalid language type '%s', ", value.str().c_str());
54 error_strm.Printf("valid values are:\n");
57 error_strm.Printf(" %s\n",
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCoreMedia.cpp56 stream.Printf("indefinite");
61 stream.Printf("+oo");
66 stream.Printf("-oo");
74 stream.Printf("%" PRId64 " seconds", value);
77 stream.Printf("%" PRId64 " half seconds", value);
80 stream.Printf("%" PRId64 " third%sof a second", value,
84 stream.Printf("%" PRId64 " %" PRId32 "th%sof a second", value, timescale,
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DDeclaration.cpp22 s->Printf(":%u", m_line);
24 s->Printf(":%u", m_column);
27 s->Printf(", line = %u", m_line);
29 s->Printf(":%u", m_column);
31 s->Printf(", column = %u", m_column);
43 s->Printf(":%u", m_line);
45 s->Printf(":%u", m_column);
48 s->Printf(" line %u", m_line);
50 s->Printf(":%u", m_column);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctionsDlsym.cpp29 Printf("WARNING: Failed to find function \"%s\".", FnName);
31 Printf(" Reason %s.", ErrorMsg);
32 Printf("\n");
H A DFuzzerDriver.cpp93 Printf("Usage:\n");
95 Printf("\nTo run fuzzing pass 0 or more directories.\n");
96 Printf("%s [-flag1=val1 [-flag2=val2 ...] ] [dir1 [dir2 ...] ]\n", Prog);
98 Printf("\nTo run individual tests without fuzzing pass 1 or more files:\n");
99 Printf("%s [-flag1=val1 [-flag2=val2 ...] ] file1 [file2 ...]\n", Prog);
101 Printf("\nFlags: (strictly in form -flag=value)\n");
109 Printf(" %s", D.Name);
111 Printf(" ");
112 Printf("\t");
113 Printf("
[all...]
H A DFuzzerLoop.cpp54 Printf("MallocFreeTracer: START\n");
61 Printf("MallocFreeTracer: STOP %zd %zd (%s)\n", Mallocs.load(),
105 Printf("MALLOC[%zd] %p %zd\n", N, ptr, size);
118 Printf("FREE[%zd] %p\n", N, ptr);
128 Printf("==%d== ERROR: libFuzzer: out-of-memory (malloc(%zd))\n", GetPid(),
130 Printf(" To change the out-of-memory limit use -rss_limit_mb=<N>\n\n");
133 Printf("SUMMARY: libFuzzer: out-of-memory\n");
179 Printf("; base unit: %s\n", Sha1ToString(BaseSha1).c_str());
218 Printf("INFO: signal received, trying to exit gracefully\n");
222 Printf("
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DUserID.cpp18 strm.Printf("{0x%8.8" PRIx64 "}", uid.GetID());
/freebsd-current/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_rtl.cpp103 Printf("MemProfiler exit stats:\n");
116 Printf("|| `[%p, %p]` || HighMem ||\n", (void *)kHighMemBeg,
118 Printf("|| `[%p, %p]` || HighShadow ||\n", (void *)kHighShadowBeg,
121 Printf("|| `[%p, %p]` || ShadowGap ||\n", (void *)kShadowGapBeg,
124 Printf("|| `[%p, %p]` || LowShadow ||\n", (void *)kLowShadowBeg,
126 Printf("|| `[%p, %p]` || LowMem ||\n", (void *)kLowMemBeg,
129 Printf("MemToShadow(shadow): %p %p", (void *)MEM_TO_SHADOW(kLowShadowBeg),
132 Printf(" %p %p", (void *)MEM_TO_SHADOW(kHighShadowBeg),
135 Printf("\n");
136 Printf("malloc_context_siz
[all...]
H A Dmemprof_stats.cpp33 Printf("%s", prefix);
37 Printf("%zu:%zu; ", i, array[i]);
39 Printf("\n");
43 Printf("Stats: %zuM malloced (%zuM for overhead) by %zu calls\n",
45 Printf("Stats: %zuM realloced by %zu calls\n", realloced >> 20, reallocs);
46 Printf("Stats: %zuM freed by %zu calls\n", freed >> 20, frees);
47 Printf("Stats: %zuM really freed by %zu calls\n", really_freed >> 20,
49 Printf("Stats: %zuM (%zuM-%zuM) mmaped; %zu maps, %zu unmaps\n",
54 Printf("Stats: malloc large: %zu\n", malloc_large);
119 Printf("Stat
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp105 Printf(
115 // example, Printf may call syslog() which can itself be built with hwasan).
238 Printf("\nPotentially referenced stack objects:\n");
259 Printf("%s", d.Error());
260 Printf("Cause: %s\n", cause);
261 Printf("%s", d.Default());
262 Printf("%s", d.Location());
267 Printf(
273 Printf("%s\n", d.Default());
285 Printf("Previousl
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_errors.cpp48 Printf("%s", d.Error());
52 Printf("%s", d.Default());
63 Printf("%s", d.Error());
67 Printf("%s object passed to delete has wrong type:\n", d.Default());
69 Printf(
84 Printf(
103 Printf("%s", d.Error());
108 Printf("%s", d.Default());
124 Printf("%s", d.Error());
128 Printf("
[all...]
H A Dasan_stats.cpp34 Printf("%s", prefix);
37 Printf("%zu:%zu; ", i, array[i]);
39 Printf("\n");
43 Printf("Stats: %zuM malloced (%zuM for red zones) by %zu calls\n",
45 Printf("Stats: %zuM realloced by %zu calls\n", realloced>>20, reallocs);
46 Printf("Stats: %zuM freed by %zu calls\n", freed>>20, frees);
47 Printf("Stats: %zuM really freed by %zu calls\n",
49 Printf("Stats: %zuM (%zuM-%zuM) mmaped; %zu maps, %zu unmaps\n",
54 Printf("Stats: malloc large: %zu\n", malloc_large);
128 Printf("Stat
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.cpp35 Printf("WARNING: found %d unrecognized flag(s):\n", n_unknown_flags_);
37 Printf(" %s\n", unknown_flags_[i]);
59 Printf("Available flags for %s:\n", SanitizerToolName);
64 Printf("\t%s\n\t\t- %s (Current Value%s: %s)\n", flags_[i].name,
70 Printf("%s: ERROR: %s\n", SanitizerToolName, err);
88 Printf("%s: ERROR: expected '=' in %s\n", SanitizerToolName,
158 Printf("Failed to read options from '%s': error %d\n", path, err);
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBCommandReturnObjectExtensions.i14 // wrapping the variadic Printf() with a plain Print()
18 self->Printf("%s", str);
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointName.cpp38 s->Printf("list: %s", GetAllowList() ? "allowed" : "disallowed");
41 s->Printf("disable: %s", GetAllowDisable() ? "allowed" : "disallowed");
44 s->Printf("delete: %s", GetAllowDelete() ? "allowed" : "disallowed");
52 s->Printf("Help: %s\n", m_help.c_str());
H A DBreakpointID.cpp46 s->Printf("%p BreakpointID:", static_cast<void *>(this));
51 s->Printf("%i", m_break_id);
53 s->Printf("%i.%i", m_break_id, m_location_id);
61 s->Printf("%i", bp_id);
63 s->Printf("%i.%i", bp_id, loc_id);

Completed in 201 milliseconds

1234567891011>>