Home
last modified time | relevance | path

Searched refs:kernel_load_address (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp187 const addr_t kernel_load_address = SearchForDarwinKernel(process); in CreateInstance() local
188 if (CheckForKernelImageAtAddress(kernel_load_address, process).IsValid()) { in CreateInstance()
189 return new DynamicLoaderDarwinKernel(process, kernel_load_address); in CreateInstance()
196 addr_t kernel_load_address = process->GetImageInfoAddress(); in SearchForDarwinKernel() local
197 if (kernel_load_address == LLDB_INVALID_ADDRESS) in SearchForDarwinKernel()
198 kernel_load_address = SearchForKernelAtSameLoadAddr(process); in SearchForDarwinKernel()
199 if (kernel_load_address == LLDB_INVALID_ADDRESS) in SearchForDarwinKernel()
200 kernel_load_address = SearchForKernelWithDebugHints(process); in SearchForDarwinKernel()
201 if (kernel_load_address == LLDB_INVALID_ADDRESS) in SearchForDarwinKernel()
202 kernel_load_address = SearchForKernelNearPC(process); in SearchForDarwinKernel()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.cpp477 addr_t kernel_load_address; in GetLoadAddress() local
479 kernel_load_address = ::strtoul(m_kernel_version.c_str() + p, NULL, 16); in GetLoadAddress()
480 if (errno != 0 || kernel_load_address == 0) in GetLoadAddress()
483 return kernel_load_address; in GetLoadAddress()