Home
last modified time | relevance | path

Searched refs:symbol_address (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOS.cpp355 addr_t symbol_address = in SetNotificationBreakpoint() local
357 if (symbol_address != LLDB_INVALID_ADDRESS) { in SetNotificationBreakpoint()
362 .CreateBreakpoint(symbol_address, internal, hardware) in SetNotificationBreakpoint()
403 addr_t symbol_address = LLDB_INVALID_ADDRESS; in CanLoadImage() local
415 symbol_address = GetDyldLockVariableAddressFromModule(module_pointer); in CanLoadImage()
416 if (symbol_address != LLDB_INVALID_ADDRESS) in CanLoadImage()
423 if (symbol_address == LLDB_INVALID_ADDRESS) { in CanLoadImage()
428 addr_t symbol_address = in CanLoadImage() local
430 if (symbol_address != LLDB_INVALID_ADDRESS) in CanLoadImage()
440 if (symbol_address != LLDB_INVALID_ADDRESS) { in CanLoadImage()
[all …]
DDynamicLoaderDarwin.cpp996 Address symbol_address = symbol->GetAddress(); in GetStepThroughTrampolinePlan() local
998 &symbol_address, error); in GetStepThroughTrampolinePlan()
/external/llvm-project/lldb/test/API/python_api/symbol-context/two-files/
DTestSymbolContextTwoFiles.py31 symbol_address = sc_list.GetContextAtIndex(
33 self.assertTrue(symbol_address.IsValid())
35 symbol_address, lldb.eSymbolContextFunction)
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
DInstrumentationRuntimeASan.cpp299 addr_t symbol_address = symbol->GetAddressRef().GetOpcodeLoadAddress(&target); in Activate() local
301 if (symbol_address == LLDB_INVALID_ADDRESS) in Activate()
308 .CreateBreakpoint(symbol_address, internal, hardware) in Activate()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
DInstrumentationRuntimeMainThreadChecker.cpp217 addr_t symbol_address = symbol->GetAddressRef().GetOpcodeLoadAddress(&target); in Activate() local
219 if (symbol_address == LLDB_INVALID_ADDRESS) in Activate()
224 .CreateBreakpoint(symbol_address, /*internal=*/true, in Activate()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
DInstrumentationRuntimeUBSan.cpp270 addr_t symbol_address = symbol->GetAddressRef().GetOpcodeLoadAddress(&target); in Activate() local
272 if (symbol_address == LLDB_INVALID_ADDRESS) in Activate()
277 .CreateBreakpoint(symbol_address, /*internal=*/true, in Activate()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
DInstrumentationRuntimeTSan.cpp912 addr_t symbol_address = symbol->GetAddressRef().GetOpcodeLoadAddress(&target); in Activate() local
914 if (symbol_address == LLDB_INVALID_ADDRESS) in Activate()
921 .CreateBreakpoint(symbol_address, internal, hardware) in Activate()
/external/rust/crates/anyhow/src/
Dbacktrace.rs221 if frame.symbol_address() as usize == ip && actual_start.is_none() { in create()
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangExpressionDeclMap.cpp1666 const Address symbol_address = symbol.GetAddress(); in AddOneGenericVariable() local
1667 lldb::addr_t symbol_load_addr = symbol_address.GetLoadAddress(target); in AddOneGenericVariable()
/external/libabigail/src/
Dabg-dwarf-reader.cc5265 function_symbol_is_exported(GElf_Addr symbol_address) const in function_symbol_is_exported()
5267 elf_symbol_sptr symbol = symtab()->lookup_symbol(symbol_address); in function_symbol_is_exported()
5297 variable_symbol_is_exported(GElf_Addr symbol_address) const in variable_symbol_is_exported()
5299 elf_symbol_sptr symbol = symtab()->lookup_symbol(symbol_address); in variable_symbol_is_exported()
/external/llvm-project/lldb/source/Target/
DProcess.cpp1755 Address symbol_address = symbol->GetAddress(); in CreateBreakpointSite() local
1756 load_addr = ResolveIndirectFunction(&symbol_address, error); in CreateBreakpointSite()