Home
last modified time | relevance | path

Searched refs:symbol_load_addr (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangExpressionDeclMap.cpp511 addr_t symbol_load_addr = LLDB_INVALID_ADDRESS; in GetSymbolAddress() local
515 (symbol_load_addr == 0 || symbol_load_addr == LLDB_INVALID_ADDRESS); in GetSymbolAddress()
528 symbol_load_addr = sym_address.GetCallableLoadAddress(&target); in GetSymbolAddress()
532 symbol_load_addr = sym_address.GetCallableLoadAddress(&target, true); in GetSymbolAddress()
551 symbol_load_addr = GetSymbolAddress( in GetSymbolAddress()
582 symbol_load_addr = sym_address.GetLoadAddress(&target); in GetSymbolAddress()
587 if (symbol_load_addr == LLDB_INVALID_ADDRESS && process) { in GetSymbolAddress()
591 symbol_load_addr = runtime->LookupRuntimeSymbol(name); in GetSymbolAddress()
595 return symbol_load_addr; in GetSymbolAddress()
1667 lldb::addr_t symbol_load_addr = symbol_address.GetLoadAddress(target); in AddOneGenericVariable() local
[all …]
/external/llvm-project/lldb/source/Expression/
DIRExecutionUnit.cpp909 lldb::addr_t symbol_load_addr = runtime->LookupRuntimeSymbol(spec.name); in FindInRuntimes() local
911 if (symbol_load_addr != LLDB_INVALID_ADDRESS) in FindInRuntimes()
912 return symbol_load_addr; in FindInRuntimes()
925 lldb::addr_t symbol_load_addr = target_sp->GetPersistentSymbol(spec.name); in FindInUserDefinedSymbols() local
927 if (symbol_load_addr != LLDB_INVALID_ADDRESS) in FindInUserDefinedSymbols()
928 return symbol_load_addr; in FindInUserDefinedSymbols()
/external/llvm-project/lldb/examples/python/
Dlldbtk.py432 symbol_load_addr = address.GetLoadAddress(self.target)
433 if symbol_load_addr != lldb.LLDB_INVALID_ADDRESS:
434 value = '0x%16.16x' % (symbol_load_addr)
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntimeV2.cpp392 lldb::addr_t symbol_load_addr = in ExtractRuntimeGlobalSymbol() local
394 if (symbol_load_addr != LLDB_INVALID_ADDRESS) { in ExtractRuntimeGlobalSymbol()
397 symbol_load_addr, byte_size, default_value, error); in ExtractRuntimeGlobalSymbol()
399 return symbol_load_addr; in ExtractRuntimeGlobalSymbol()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.cpp3955 addr_t symbol_load_addr = LLDB_INVALID_ADDRESS; in ServeSymbolLookups() local
3963 symbol_load_addr == LLDB_INVALID_ADDRESS; in ServeSymbolLookups()
4000 symbol_load_addr = in ServeSymbolLookups()
4015 if (symbol_load_addr != LLDB_INVALID_ADDRESS) { in ServeSymbolLookups()
4016 packet.Printf("%" PRIx64, symbol_load_addr); in ServeSymbolLookups()