HomeSort by relevance Sort by last modified time
    Searched refs:Printf (Results 26 - 50 of 373) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.cpp     [all...]
  /external/compiler-rt/lib/asan/
asan_report.cc 162 Printf("%s", str.data());
169 Printf("malloc_zone_from_ptr(%p) = %p, which is %s\n",
172 Printf("malloc_zone_from_ptr(%p) = %p, which doesn't have a name\n",
176 Printf("malloc_zone_from_ptr(%p) = 0\n", ptr);
261 Printf("%s", str.data());
271 Printf(kAddrInShadowReport, addr, "shadow gap area");
275 Printf(kAddrInShadowReport, addr, "high shadow area");
279 Printf(kAddrInShadowReport, addr, "low shadow area");
341 Printf("%s", str.data());
373 Printf("%s", d.Location())
    [all...]
  /external/lldb/source/DataFormatters/
CF.cpp 39 stream.Printf("%04d-%02d-%02d %02d:%02d:%02d %s", tm_date->tm_year+1900, tm_date->tm_mon+1, tm_date->tm_mday, tm_date->tm_hour, tm_date->tm_min, tm_date->tm_sec, buffer.c_str());
87 expr.Printf("(int)CFBagGetCount((void*)0x%" PRIx64 ")",valobj.GetPointerValue());
102 stream.Printf("@\"%u value%s\"",
174 stream.Printf("%c%c%c%c %c%c%c%c ",
198 stream.Printf("%c",bit7 ? '1' : '0');
203 stream.Printf("%c",bit6 ? '1' : '0');
208 stream.Printf("%c",bit5 ? '1' : '0');
213 stream.Printf("%c",bit4 ? '1' : '0');
218 stream.Printf("%c",bit3 ? '1' : '0');
223 stream.Printf("%c",bit2 ? '1' : '0')
    [all...]
Cocoa.cpp 66 stream.Printf("%s",summary_stream.GetData());
112 stream.Printf("%s",summary_stream.GetData());
156 stream.Printf("%s",summary_stream.GetData());
210 stream.Printf("mach port: %u",(uint32_t)(port_number & 0x00000000FFFFFFFF));
286 stream.Printf("%" PRIu64 " index%s",
330 stream.Printf("(char)%hhd",(char)value);
334 stream.Printf("(short)%hd",(short)value);
338 stream.Printf("(int)%d",(int)value);
342 stream.Printf("(long)%" PRId64,value);
345 stream.Printf("unexpected value:(info=%" PRIu64 ", value=%" PRIu64,i_bits,value)
    [all...]
  /external/lldb/source/API/
SBFileSpec.cpp 75 log->Printf ("SBFileSpec(%p)::Exists () => %s", m_opaque_ap.get(), (result ? "true" : "false"));
101 log->Printf ("SBFileSpec(%p)::GetFilename () => \"%s\"", m_opaque_ap.get(), s);
103 log->Printf ("SBFileSpec(%p)::GetFilename () => NULL", m_opaque_ap.get());
117 log->Printf ("SBFileSpec(%p)::GetDirectory () => \"%s\"", m_opaque_ap.get(), s);
119 log->Printf ("SBFileSpec(%p)::GetDirectory () => NULL", m_opaque_ap.get());
132 log->Printf ("SBFileSpec(%p)::GetPath (dst_path=\"%.*s\", dst_len=%" PRIu64 ") => %u",
SBCommunication.cpp 34 log->Printf ("SBCommunication::SBCommunication (broadcaster_name=\"%s\") => "
100 log->Printf ("SBCommunication(%p)::AdoptFileDescriptor (fd=%d, ownd_fd=%i) => %s",
117 log->Printf ("SBCommunication(%p)::Disconnect () => %s", m_opaque,
132 log->Printf ("SBCommunication(%p)::IsConnected () => %i", m_opaque, result);
142 log->Printf ("SBCommunication(%p)::Read (dst=%p, dst_len=%" PRIu64 ", timeout_usec=%u, &status)...",
154 log->Printf ("SBCommunication(%p)::Read (dst=%p, dst_len=%" PRIu64 ", timeout_usec=%u, &status=%s) => %" PRIu64,
176 log->Printf ("SBCommunication(%p)::Write (src=%p, src_len=%" PRIu64 ", &status=%s) => %" PRIu64,
192 log->Printf ("SBCommunication(%p)::ReadThreadStart () => %i", m_opaque, success);
203 log->Printf ("SBCommunication(%p)::ReadThreadStop ()...", m_opaque);
210 log->Printf ("SBCommunication(%p)::ReadThreadStop () => %i", m_opaque, success)
    [all...]
SBData.cpp 94 log->Printf ("SBData::GetAddressByteSize () => "
106 log->Printf ("SBData::SetAddressByteSize (%i)", addr_byte_size);
124 log->Printf ("SBData::GetByteSize () => "
137 log->Printf ("SBData::GetByteOrder () => "
149 log->Printf ("SBData::GetByteOrder (%i)", endian);
170 log->Printf ("SBData::GetFloat (error=%p,offset=%" PRIu64 ") => "
192 log->Printf ("SBData::GetDouble (error=%p,offset=%" PRIu64 ") => "
214 log->Printf ("SBData::GetLongDouble (error=%p,offset=%" PRIu64 ") => "
236 log->Printf ("SBData::GetAddress (error=%p,offset=%" PRIu64 ") => "
258 log->Printf ("SBData::GetUnsignedInt8 (error=%p,offset=%" PRIu64 ") =>
    [all...]
SBValue.cpp 130 log->Printf ("SBValue(%p)::GetSP() => error: process is running", value_sp.get());
326 log->Printf ("SBValue(%p)::GetName () => \"%s\"", value_sp.get(), name);
328 log->Printf ("SBValue(%p)::GetName () => NULL", value_sp.get());
349 log->Printf ("SBValue(%p)::GetTypeName () => \"%s\"", value_sp.get(), name);
351 log->Printf ("SBValue(%p)::GetTypeName () => NULL", value_sp.get());
371 log->Printf ("SBValue(%p)::GetByteSize () => %" PRIu64, value_sp.get(), (uint64_t)result);
390 log->Printf ("SBValue(%p)::IsInScope () => %i", value_sp.get(), result);
410 log->Printf ("SBValue(%p)::GetValue() => \"%s\"", value_sp.get(), cstr);
412 log->Printf ("SBValue(%p)::GetValue() => NULL", value_sp.get());
432 case eValueTypeInvalid: log->Printf ("SBValue(%p)::GetValueType () => eValueTypeInvalid", value_sp.get()); break
    [all...]
  /external/lldb/source/Core/
Opcode.cpp 38 bytes_written = s->Printf ("0x%2.2x", m_data.inst8);
41 bytes_written = s->Printf ("0x%4.4x", m_data.inst16);
45 bytes_written = s->Printf ("0x%8.8x", m_data.inst32);
49 bytes_written = s->Printf ("0x%16.16" PRIx64, m_data.inst64);
58 bytes_written += s->Printf ("%2.2x", m_data.inst.bytes[i]);
67 bytes_written = s->Printf ("%*s", min_byte_width - bytes_written, "");
  /external/lldb/source/Target/
ThreadPlanRunToAddress.cpp 119 s->Printf ("run to address with no addresses given.");
123 s->Printf ("run to address: ");
125 s->Printf ("run to addresses: ");
130 s->Printf(" ");
137 s->Printf ("run to address with no addresses given.");
141 s->Printf ("Run to address: ");
144 s->Printf ("Run to addresses: ");
151 s->Printf("\n");
156 s->Printf (" using breakpoint: %d - ", m_break_ids[i]);
161 s->Printf ("but the breakpoint has been deleted.")
    [all...]
ThreadPlanShouldStopHere.cpp 63 log->Printf ("ShouldStopHere callback found a step out plan from 0x%" PRIx64 ": %s.", current_addr, s.GetData());
67 log->Printf ("ShouldStopHere callback didn't find a step out plan from: 0x%" PRIx64 ".", current_addr);
ThreadPlanCallFunction.cpp 71 m_constructor_errors.Printf ("Trying to put the stack in unreadable memory at: 0x%" PRIx64 ".", m_function_sp);
73 log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData());
81 m_constructor_errors.Printf ("Can't execute code without an executable module.");
83 log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData());
91 m_constructor_errors.Printf ("Could not find object file for module \"%s\".",
95 log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData());
102 m_constructor_errors.Printf ("Could not find entry point address for executable module \"%s\".",
105 log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData());
118 m_constructor_errors.Printf ("Setting up ThreadPlanCallFunction, failed to checkpoint thread state.");
120 log->Printf ("ThreadPlanCallFunction(%p): %s.", this, m_constructor_errors.GetData())
    [all...]
ThreadSpec.cpp 143 s->Printf("tid: 0x%" PRIx64 " ", GetTID());
146 s->Printf("index: %d ", GetIndex());
150 s->Printf ("thread name: \"%s\" ", name);
154 s->Printf ("queue name: \"%s\" ", queue_name);
StopInfo.cpp 192 log->Printf ("Process::%s could not find breakpoint site id: %" PRId64 "...", __FUNCTION__, m_value);
256 strm.Printf("breakpoint ");
272 strm.Printf ("internal %s breakpoint(%d).", kind, m_break_id);
274 strm.Printf ("internal breakpoint(%d).", m_break_id);
278 strm.Printf ("breakpoint %d.", m_break_id);
284 strm.Printf ("one-shot breakpoint %d", m_break_id);
286 strm.Printf ("breakpoint %d which has been deleted.", m_break_id);
290 strm.Printf("breakpoint site %" PRIi64 " which has been deleted - unknown address", m_value);
292 strm.Printf("breakpoint site %" PRIi64 " which has been deleted - was at 0x%" PRIx64, m_value, m_address);
329 log->Printf ("PerformAction got called with an invalid thread.")
    [all...]
  /external/lldb/scripts/Python/interface/
SBStream.i 34 # => 4 printf('Hello world.\\n'); // Set break point at this line.
71 // wrapping the variadic Printf() with a plain Print()
76 self->Printf("%s", str);
  /external/lldb/source/Interpreter/
OptionValueSInt64.cpp 25 //printf ("%p: DumpValue (exe_ctx=%p, strm, mask) m_current_value = %" PRIi64 "\n", this, exe_ctx, m_current_value);
27 strm.Printf ("(%s)", GetTypeAsCString ());
34 strm.Printf ("%" PRIi64, m_current_value);
41 //printf ("%p: SetValueFromCString (s=\"%s\", op=%i)\n", this, value_cstr, op);
OptionValueEnumeration.cpp 39 strm.Printf ("(%s)", GetTypeAsCString ());
53 strm.Printf("%" PRIu64, (uint64_t)m_current_value);
80 error_strm.Printf("invalid enumeration value '%s'", value);
84 error_strm.Printf(", valid values are: %s", m_enumerations.GetCStringAtIndex(0));
87 error_strm.Printf (", %s", m_enumerations.GetCStringAtIndex(i));
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDIECollection.cpp 57 s->Printf( "%s\n", title);
61 s->Printf( "0x%8.8x\n", (*pos)->GetOffset());
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
raw_printer_test.cc 20 printer.Printf("foo");
29 printer.Printf("%s %s", "hello", "world");
38 printer.Printf("%d", 12345678);
47 printer.Printf("%s %s", "hello", "world");
58 printf("PASS\n");
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
raw_printer_test.cc 20 printer.Printf("foo");
29 printer.Printf("%s %s", "hello", "world");
38 printer.Printf("%d", 12345678);
47 printer.Printf("%s %s", "hello", "world");
58 printf("PASS\n");
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace_libcdep.cc 27 Printf(" <empty stack>\n\n");
44 Printf("%s\n", frame_desc.data());
65 Printf("%s\n", frame_desc.data());
71 Printf("\n");
  /external/lldb/source/Breakpoint/
BreakpointResolverFileRegex.cpp 90 log->Printf ("Added location: %s\n", s.GetData());
95 log->Printf ("Breakpoint at file address 0x%" PRIx64 " for %s:%d didn't pass filter.\n",
104 log->Printf ("error: Unable to set breakpoint at file address 0x%" PRIx64 " for %s:%d\n",
126 s->Printf ("source regex = \"%s\"", m_regex.GetText());
  /external/lldb/source/Commands/
CommandObjectSyntax.cpp 86 output_strm.Printf ("\nSyntax: %s\n", cmd_obj->GetSyntax());
87 output_strm.Printf ("(Try 'help %s' for more information on command options syntax.)\n",
93 output_strm.Printf ("\nSyntax: %s\n", cmd_obj->GetSyntax());
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DYLDRendezvous.cpp 311 log->Printf(" Address: %" PRIx64, GetRendezvousAddress());
312 log->Printf(" Version: %" PRIu64, GetVersion());
313 log->Printf(" Link : %" PRIx64, GetLinkMapAddress());
314 log->Printf(" Break : %" PRIx64, GetBreakAddress());
315 log->Printf(" LDBase : %" PRIx64, GetLDBase());
316 log->Printf(" State : %s",
329 log->Printf("\n SOEntry [%d] %s", i, I->path.c_str());
330 log->Printf(" Base : %" PRIx64, I->base_addr);
331 log->Printf(" Path : %" PRIx64, I->path_addr);
332 log->Printf(" Dyn : %" PRIx64, I->dyn_addr)
    [all...]
  /external/lldb/source/Expression/
IRForTarget.cpp 179 log->Printf("Unresolved intrinsic \"%s\"", Intrinsic::getName(intrinsic_id).c_str());
182 m_error_stream->Printf("Internal error [IRForTarget]: Call to unhandled compiler intrinsic '%s'\n", Intrinsic::getName(intrinsic_id).c_str());
200 log->Printf("Resolved intrinsic name \"%s\"", name.GetCString());
238 log->Printf("Function \"%s\" (alternate name \"%s\") has no address",
242 log->Printf("Function \"%s\" had no address",
249 m_error_stream->Printf("error: call to a function '%s' (alternate name '%s') that is not present in the target\n",
253 m_error_stream->Printf("error: call to a function '%s' ('%s') that is not present in the target\n",
257 m_error_stream->Printf("error: call to a function '%s' that is not present in the target\n",
269 log->Printf ("Metadataless function \"%s\" had no address", name.GetCString());
272 m_error_stream->Printf("Error [IRForTarget]: Call to a symbol-only function '%s' that is not present in the target\n", na (…)
    [all...]

Completed in 602 milliseconds

12 3 4 5 6 7 8 91011>>