Lines Matching refs:method
33 method_getName (struct objc_method * method) in method_getName() argument
35 if (method == NULL) in method_getName()
38 return method->method_name; in method_getName()
42 method_getTypeEncoding (struct objc_method * method) in method_getTypeEncoding() argument
44 if (method == NULL) in method_getTypeEncoding()
47 return method->method_types; in method_getTypeEncoding()
51 method_getImplementation (struct objc_method * method) in method_getImplementation() argument
53 if (method == NULL) in method_getImplementation()
56 return method->method_imp; in method_getImplementation()
60 method_getDescription (struct objc_method * method) in method_getDescription() argument
64 return (struct objc_method_description *)method; in method_getDescription()
129 method_setImplementation (struct objc_method * method, IMP implementation) in method_setImplementation() argument
133 if (method == NULL || implementation == NULL) in method_setImplementation()
140 old_implementation = method->method_imp; in method_setImplementation()
141 method->method_imp = implementation; in method_setImplementation()
145 __objc_update_classes_with_methods (method, NULL); in method_setImplementation()