Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp180 const addr_t kernel_load_address = SearchForDarwinKernel(process); in CreateInstance() local
183 return new DynamicLoaderDarwinKernel(process, kernel_load_address); in CreateInstance()
190 addr_t kernel_load_address = process->GetImageInfoAddress(); in SearchForDarwinKernel() local
191 if (kernel_load_address == LLDB_INVALID_ADDRESS) { in SearchForDarwinKernel()
192 kernel_load_address = SearchForKernelAtSameLoadAddr(process); in SearchForDarwinKernel()
193 if (kernel_load_address == LLDB_INVALID_ADDRESS) { in SearchForDarwinKernel()
194 kernel_load_address = SearchForKernelWithDebugHints(process); in SearchForDarwinKernel()
195 if (kernel_load_address == LLDB_INVALID_ADDRESS) { in SearchForDarwinKernel()
196 kernel_load_address = SearchForKernelNearPC(process); in SearchForDarwinKernel()
197 if (kernel_load_address == LLDB_INVALID_ADDRESS) { in SearchForDarwinKernel()
[all …]
/llvm-project-15.0.7/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()