Lines Matching refs:log
15 #include "lldb/Core/Log.h"
303 DYLDRendezvous::DumpToLog(Log *log) const
307 if (!log)
310 log->PutCString("DYLDRendezvous:");
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",
325 log->PutCString("DYLDRendezvous SOEntries:");
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);
333 log->Printf(" Next : %" PRIx64, I->next);
334 log->Printf(" Prev : %" PRIx64, I->prev);