Searched refs:kernel_load_address (Results 1 – 2 of 2) sorted by relevance
184 const addr_t kernel_load_address = SearchForDarwinKernel(process); in CreateInstance() local185 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() local195 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 …]
478 addr_t kernel_load_address; in GetLoadAddress() local480 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()