OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:kernel_load_address
(Results
1 - 2
of
2
) sorted by null
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp
180
addr_t
kernel_load_address
= SearchForDarwinKernel (process);
local
181
if (
kernel_load_address
!= LLDB_INVALID_ADDRESS)
184
return new DynamicLoaderDarwinKernel (process,
kernel_load_address
);
192
addr_t
kernel_load_address
= process->GetImageInfoAddress();
local
193
if (
kernel_load_address
== LLDB_INVALID_ADDRESS)
195
kernel_load_address
= SearchForKernelAtSameLoadAddr (process);
196
if (
kernel_load_address
== LLDB_INVALID_ADDRESS)
198
kernel_load_address
= SearchForKernelWithDebugHints (process);
199
if (
kernel_load_address
== LLDB_INVALID_ADDRESS)
201
kernel_load_address
= SearchForKernelNearPC (process)
[
all
...]
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.cpp
599
addr_t
kernel_load_address
;
601
kernel_load_address
= ::strtoul (m_kernel_version.c_str() + p, NULL, 16);
602
if (errno != 0 ||
kernel_load_address
== 0)
605
return
kernel_load_address
;
[
all
...]
Completed in 1433 milliseconds