Searched refs:get_method (Results 1 – 16 of 16) sorted by relevance
/php-src/ext/standard/ |
H A D | incomplete_class.c | 119 php_incomplete_object_handlers.get_method = incomplete_class_get_method; in php_register_incomplete_class_handlers()
|
/php-src/Zend/ |
H A D | zend_object_handlers.h | 222 zend_object_get_method_t get_method; /* required */ member
|
H A D | zend_closures.c | 712 closure_handlers.get_method = zend_closure_get_method; in zend_register_closure_ce()
|
H A D | zend_builtin_functions.c | 972 func = Z_OBJ_HT_P(klass)->get_method(&obj, method_name, NULL); in ZEND_FUNCTION()
|
H A D | zend_API.c | 4015 fcc->function_handler = fcc->object->handlers->get_method(&fcc->object, mname, NULL); in zend_is_callable_check_func()
|
H A D | zend_execute.c | 5081 fbc = Z_OBJ_HT_P(obj)->get_method(&object, Z_STR_P(method), NULL); in zend_init_dynamic_call_array()
|
H A D | zend_vm_execute.h | 7220 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((IS_CONST == IS_CONST) ? (RT_CONSTA… in ZEND_INIT_METHOD_CALL_SPEC_CONST_CONST_HANDLER() 9794 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ?… in ZEND_INIT_METHOD_CALL_SPEC_CONST_TMPVAR_HANDLER() 12286 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((IS_CV == IS_CONST) ? (RT_CONSTANT(… in ZEND_INIT_METHOD_CALL_SPEC_CONST_CV_HANDLER() 16689 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((IS_CONST == IS_CONST) ? (RT_CONSTA… in ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_CONST_HANDLER() 18182 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ?… in ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_TMPVAR_HANDLER() 19589 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((IS_CV == IS_CONST) ? (RT_CONSTANT(… in ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_CV_HANDLER() 34975 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((IS_CONST == IS_CONST) ? (RT_CONSTA… in ZEND_INIT_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER() 37144 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), (((IS_TMP_VAR|IS_VAR) == IS_CONST) ?… in ZEND_INIT_METHOD_CALL_SPEC_UNUSED_TMPVAR_HANDLER() 39789 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((IS_CV == IS_CONST) ? (RT_CONSTANT(… in ZEND_INIT_METHOD_CALL_SPEC_UNUSED_CV_HANDLER() 44905 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((IS_CONST == IS_CONST) ? (RT_CONSTA… in ZEND_INIT_METHOD_CALL_SPEC_CV_CONST_HANDLER() [all …]
|
H A D | zend_vm_def.h | 3634 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((OP2_TYPE == IS_CONST) ? (RT_CONSTA…
|
/php-src/ext/spl/ |
H A D | spl_iterators.c | 909 function_handler = (*zobject)->handlers->get_method(zobject, method, key); in spl_recursive_it_get_method() 1231 if (Z_OBJ_HT(intern->inner.zobject)->get_method) { in spl_dual_it_get_method() 1233 function_handler = (*object)->handlers->get_method(object, method, key); in spl_dual_it_get_method() 3115 spl_handlers_rec_it_it.get_method = spl_recursive_it_get_method; in PHP_MINIT_FUNCTION() 3122 spl_handlers_dual_it.get_method = spl_dual_it_get_method; in PHP_MINIT_FUNCTION()
|
H A D | spl_directory.c | 2766 spl_filesystem_object_check_handlers.get_method = spl_filesystem_object_get_method_check; in PHP_MINIT_FUNCTION()
|
/php-src/ext/xmlreader/ |
H A D | php_xmlreader.c | 1353 xmlreader_object_handlers.get_method = xmlreader_get_method; in PHP_MINIT_FUNCTION()
|
/php-src/ext/zend_test/ |
H A D | test.c | 1256 zend_test_class_handlers.get_method = zend_test_class_method_get; in PHP_MINIT_FUNCTION()
|
/php-src/ext/pdo/ |
H A D | pdo_dbh.c | 1457 pdo_dbh_object_handlers.get_method = dbh_method_get; in pdo_dbh_init()
|
H A D | pdo_stmt.c | 2500 pdo_dbstmt_object_handlers.get_method = dbstmt_method_get; in pdo_stmt_init()
|
/php-src/ext/ffi/ |
H A D | ffi.c | 5486 zend_ffi_handlers.get_method = zend_ffi_get_func; 5512 zend_ffi_cdata_handlers.get_method = zend_fake_get_method; 5536 zend_ffi_cdata_value_handlers.get_method = zend_fake_get_method; 5559 zend_ffi_cdata_free_handlers.get_method = zend_fake_get_method;
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_helpers.c | 151 fbc = obj->handlers->get_method(obj_ptr, Z_STR_P(function_name), function_name + 1); in zend_jit_find_method_helper()
|
Completed in 256 milliseconds