Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp184 const addr_t kernel_load_address = SearchForDarwinKernel(process); in CreateInstance() local
185 if (CheckForKernelImageAtAddress(kernel_load_address, process).IsValid()) { in CreateInstance()
187 return new DynamicLoaderDarwinKernel(process, kernel_load_address); in CreateInstance()
194 addr_t kernel_load_address = process->GetImageInfoAddress(); in SearchForDarwinKernel() local
195 if (kernel_load_address == LLDB_INVALID_ADDRESS) { in SearchForDarwinKernel()
196 kernel_load_address = SearchForKernelAtSameLoadAddr(process); in SearchForDarwinKernel()
197 if (kernel_load_address == LLDB_INVALID_ADDRESS) { in SearchForDarwinKernel()
198 kernel_load_address = SearchForKernelWithDebugHints(process); in SearchForDarwinKernel()
199 if (kernel_load_address == LLDB_INVALID_ADDRESS) { in SearchForDarwinKernel()
200 kernel_load_address = SearchForKernelNearPC(process); in SearchForDarwinKernel()
[all …]
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/
DCommunicationKDP.cpp478 addr_t kernel_load_address; in GetLoadAddress() local
480 kernel_load_address = ::strtoul(m_kernel_version.c_str() + p, NULL, 16); in GetLoadAddress()
481 if (errno != 0 || kernel_load_address == 0) in GetLoadAddress()
484 return kernel_load_address; in GetLoadAddress()