Lines Matching refs:symbol
30 #include "lldb/Symbol/ClangASTContext.h"
31 #include "lldb/Symbol/Symbol.h"
458 const Symbol *trampoline_symbol = m_objc_module_sp->FindFirstSymbolWithNameAndType (trampoline_name,
469 // Next look up the "changed" symbol and set a breakpoint on that...
471 const Symbol *changed_symbol = m_objc_module_sp->FindFirstSymbolWithNameAndType (changed_name,
566 // We aren't starting at the trampoline symbol.
646 const Symbol *class_getMethodImplementation = m_objc_module_sp->FindFirstSymbolWithNameAndType (get_impl_name, eSymbolTypeCode);
647 const Symbol *class_getMethodImplementation_stret = m_objc_module_sp->FindFirstSymbolWithNameAndType (get_impl_stret_name, eSymbolTypeCode);
648 const Symbol *msg_forward = m_objc_module_sp->FindFirstSymbolWithNameAndType (msg_forward_name, eSymbolTypeCode);
649 const Symbol *msg_forward_stret = m_objc_module_sp->FindFirstSymbolWithNameAndType (msg_forward_stret_name, eSymbolTypeCode);
685 // Look up the addresses for the objc dispatch functions and cache them. For now I'm inspecting the symbol
693 const Symbol *msgSend_symbol = m_objc_module_sp->FindFirstSymbolWithNameAndType (name_const_str, eSymbolTypeCode);
741 if (sc.symbol != NULL)
742 impl_code_address = sc.symbol->GetAddress();