Lines Matching defs:class_addr
64 void ObjCLanguageRuntime::AddToMethodCache(lldb::addr_t class_addr,
72 class_addr, selector, impl_addr);
75 ClassAndSel(class_addr, selector), impl_addr));
78 void ObjCLanguageRuntime::AddToMethodCache(lldb::addr_t class_addr,
84 class_addr, sel_str, impl_addr);
87 ClassAndSelStr(class_addr, sel_str), impl_addr));
90 lldb::addr_t ObjCLanguageRuntime::LookupInMethodCache(lldb::addr_t class_addr,
93 pos = m_impl_cache.find(ClassAndSel(class_addr, selector));
99 lldb::addr_t ObjCLanguageRuntime::LookupInMethodCache(lldb::addr_t class_addr,
102 pos = m_impl_str_cache.find(ClassAndSelStr(class_addr, sel_str));