reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
  194   if (kernel_load_address == LLDB_INVALID_ADDRESS) {
  195     kernel_load_address = SearchForKernelAtSameLoadAddr(process);
  196     if (kernel_load_address == LLDB_INVALID_ADDRESS) {
  197       kernel_load_address = SearchForKernelWithDebugHints(process);
  198       if (kernel_load_address == LLDB_INVALID_ADDRESS) {
  199         kernel_load_address = SearchForKernelNearPC(process);
  200         if (kernel_load_address == LLDB_INVALID_ADDRESS) {
  201           kernel_load_address = SearchForKernelViaExhaustiveSearch(process);
  206   return kernel_load_address;