Searched refs:kernel_load_address (Results 1 – 2 of 2) sorted by relevance
187 const addr_t kernel_load_address = SearchForDarwinKernel(process); in CreateInstance() local188 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() local197 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 …]
477 addr_t kernel_load_address; in GetLoadAddress() local479 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()