Home
last modified time | relevance | path

Searched refs:LLDB_LOGV (Results 1 – 23 of 23) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformRemoteDarwinDevice.cpp247 LLDB_LOGV(log, "Searching for {0} in sdk path {1}", platform_file, in GetSharedModule()
264 LLDB_LOGV(log, "Searching for {0} in sdk path {1}", platform_file, in GetSharedModule()
286 LLDB_LOGV(log, "Searching for {0} in sdk path {1}", platform_file, in GetSharedModule()
306 LLDB_LOGV(log, "Searching for {0} in sdk path {1}", platform_file, in GetSharedModule()
H A DPlatformDarwinKernel.cpp489 LLDB_LOGV(log, "PlatformDarwinKernel examining '{0}'", file_spec); in GetKernelsAndKextsInDirectoryHelper()
569 LLDB_LOGV(log, "PlatformDarwinKernel descending into directory '{0}'", in GetKernelsAndKextsInDirectoryHelper()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.cpp548 LLDB_LOGV(log, "class_name = {0}", descriptor.GetClassName()); in fill()
563 LLDB_LOGV(log, "name = {0}, encoding = {1}, offset_ptr = {2:x}, size = {3}", in fill()
568 LLDB_LOGV(log, in fill()
580 LLDB_LOGV(log, "offset_ptr = {0:x} --> {1}", offset_ptr, in fill()
585 LLDB_LOGV(log, "offset_ptr = {0:x} --> read fail, read = %{1}", in fill()
/llvm-project-15.0.7/lldb/source/Target/
H A DMemory.cpp306 LLDB_LOGV(log, "({0}) (size = {1} ({1:x})) => {2:x}", this, size, addr); in ReserveBlock()
311 LLDB_LOGV(log, "({0}) (size = {1} ({1:x})) => {2:x}", this, size, in ReserveBlock()
326 LLDB_LOGV(log, "({0}) (addr = {1:x}) => {2}", this, addr, success); in FreeBlock()
H A DSectionLoadList.cpp71 LLDB_LOGV(log, "(section = {0} ({1}.{2}), load_addr = {3:x}) module = {4}", in SetSectionLoadAddress()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DDebuggerThread.cpp235 LLDB_LOGV(log, "Entering WaitForDebugEvent loop"); in DebugLoop()
237 LLDB_LOGV(log, "Calling WaitForDebugEvent"); in DebugLoop()
288 LLDB_LOGV(log, "calling ContinueDebugEvent({0}, {1}, {2}) on thread {3}.", in DebugLoop()
H A DProcessWindows.cpp540 LLDB_LOGV(log, "Thread {0} was running and is still running.", in DoUpdateThreadList()
543 LLDB_LOGV(log, "Thread {0} was running and has exited.", old_thread_id); in DoUpdateThreadList()
554 LLDB_LOGV(log, "Thread {0} is new since last update.", thread_info.first); in DoUpdateThreadList()
H A DProcessDebugger.cpp460 LLDB_LOGV(log, in GetMemoryRegionInfo()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp493 LLDB_LOGV( in ClangExpressionParser()
497 LLDB_LOGV(log, "Triple: '{0}'", opts.Triple); in ClangExpressionParser()
498 LLDB_LOGV(log, "CPU: '{0}'", opts.CPU); in ClangExpressionParser()
499 LLDB_LOGV(log, "FPMath: '{0}'", opts.FPMath); in ClangExpressionParser()
500 LLDB_LOGV(log, "ABI: '{0}'", opts.ABI); in ClangExpressionParser()
501 LLDB_LOGV(log, "LinkerVersion: '{0}'", opts.LinkerVersion); in ClangExpressionParser()
H A DClangASTSource.cpp197 LLDB_LOGV(log, " CTD Inspecting namespace map{0} ({1} entries)", in FindCompleteType()
1400 LLDB_LOGV(log, " CAS::FEVD Inspecting namespace map {0} ({1} entries)", in LookupInNamespace()
H A DClangUserExpression.cpp513 LLDB_LOGV(log, "[C++ module config] Analyzing support file: {0}", in GetModuleConfig()
H A DClangExpressionDeclMap.cpp714 LLDB_LOGV(log, " CEDM::FEVD Inspecting (NamespaceMap*){0:x} ({1} entries)", in FindExternalVisibleDecls()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp155 LLDB_LOGV(log, "PTRACE_POKETEXT {0}", buf.GetData()); in PtraceDisplayBytes()
160 LLDB_LOGV(log, "PTRACE_POKEDATA {0}", buf.GetData()); in PtraceDisplayBytes()
165 LLDB_LOGV(log, "PTRACE_POKEUSER {0}", buf.GetData()); in PtraceDisplayBytes()
170 LLDB_LOGV(log, "PTRACE_SETREGS {0}", buf.GetData()); in PtraceDisplayBytes()
175 LLDB_LOGV(log, "PTRACE_SETFPREGS {0}", buf.GetData()); in PtraceDisplayBytes()
180 LLDB_LOGV(log, "PTRACE_SETSIGINFO {0}", buf.GetData()); in PtraceDisplayBytes()
186 LLDB_LOGV(log, "PTRACE_SETREGSET {0}", buf.GetData()); in PtraceDisplayBytes()
/llvm-project-15.0.7/lldb/source/Utility/
H A DStringList.cpp246 LLDB_LOGV(log, "{0}", strm.GetData()); in LogDump()
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DFormatManager.cpp646 LLDB_LOGV(log, "Cache hits: {0} - Cache Misses: {1}", in GetCached()
663 LLDB_LOGV(log, "Cache hits: {0} - Cache Misses: {1}", in GetCached()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DLog.h350 #define LLDB_LOGV(log, ...) \ macro
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DLogTest.cpp348 std::thread log_thread([this] { LLDB_LOGV(getLog(), "Hello World"); }); in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp129 LLDB_LOGV(log, "Releasing PyGILState. Returning to state = {0}locked", in ~InitializePythonRAII()
183 LLDB_LOGV(log, "Ensured PyGILState. Previous state = {0}locked\n", in InitializeThreadsPrivate()
360 LLDB_LOGV(log, "Ensured PyGILState. Previous state = {0}locked", in DoAcquireLock()
383 LLDB_LOGV(log, "Releasing PyGILState. Returning to state = {0}locked", in DoFreeLock()
/llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp500 LLDB_LOGV(log, "pid = {0}", GetID()); in DoUpdateThreadList()
H A DCommunicationKDP.cpp196 LLDB_LOGV(log, in WaitForPacketWithTimeoutMicroSecondsNoLock()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp279 LLDB_LOGV(log, in WaitForPacketNoLock()
H A DProcessGDBRemote.cpp1534 LLDB_LOGV(log, "pid = {0}", GetID()); in DoUpdateThreadList()
1553 LLDB_LOGV(log, "Making new thread: {0} for thread ID: {1:x}.", in DoUpdateThreadList()
1556 LLDB_LOGV(log, "Found old thread: {0} for thread ID: {1:x}.", in DoUpdateThreadList()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp3030 LLDB_LOGV(log, "Failed to parse non-numeric '.rs.info' section {0}", in ParseRSInfo()