Searched refs:get_method (Results 1 – 14 of 14) sorted by relevance
/PHP-7.3/ext/standard/ |
H A D | incomplete_class.c | 126 php_incomplete_object_handlers.get_method = incomplete_class_get_method; in php_create_incomplete_class()
|
/PHP-7.3/ext/intl/breakiterator/ |
H A D | breakiterator_iterators.cpp | 261 ret = Z_OBJ_HANDLER_P(break_iter_zv, get_method)(object_ptr, method, key); in IntlPartsIterator_get_method() 312 IntlPartsIterator_handlers.get_method = IntlPartsIterator_get_method; in breakiterator_register_IntlPartsIterator_class()
|
/PHP-7.3/ext/zend_test/ |
H A D | test.c | 224 zend_test_class_handlers.get_method = zend_test_class_method_get; in PHP_MINIT_FUNCTION()
|
/PHP-7.3/Zend/ |
H A D | zend_object_handlers.h | 151 zend_object_get_method_t get_method; member
|
H A D | zend_closures.c | 629 closure_handlers.get_method = zend_closure_get_method; in zend_register_closure_ce()
|
H A D | zend_builtin_functions.c | 1348 } else if (Z_TYPE_P(klass) == IS_OBJECT && Z_OBJ_HT_P(klass)->get_method != NULL) { in ZEND_FUNCTION() 1350 zend_function *func = Z_OBJ_HT_P(klass)->get_method(&obj, method_name, NULL); in ZEND_FUNCTION()
|
H A D | zend_API.c | 3145 } else if (fcc->object->handlers->get_method) { in zend_is_callable_check_func() 3146 fcc->function_handler = fcc->object->handlers->get_method(&fcc->object, mname, NULL); in zend_is_callable_check_func()
|
H A D | zend_vm_execute.h | 5132 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 7314 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 10407 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 13896 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 15510 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 17391 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 31854 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 33590 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 35971 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 41254 if (UNEXPECTED(obj->handlers->get_method == NULL)) { [all …]
|
H A D | zend_execute.c | 3093 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_def.h | 3081 if (UNEXPECTED(obj->handlers->get_method == NULL)) { 3093 …fbc = obj->handlers->get_method(&obj, Z_STR_P(function_name), ((OP2_TYPE == IS_CONST) ? (RT_CONSTA…
|
/PHP-7.3/ext/spl/ |
H A D | spl_iterators.c | 900 if (Z_OBJ_HT_P(zobj)->get_method) { in spl_recursive_it_get_method() 902 function_handler = (*zobject)->handlers->get_method(zobject, method, key); in spl_recursive_it_get_method() 1374 if (Z_OBJ_HT(intern->inner.zobject)->get_method) { in spl_dual_it_get_method() 1376 function_handler = (*object)->handlers->get_method(object, method, key); in spl_dual_it_get_method() 3692 spl_handlers_rec_it_it.get_method = spl_recursive_it_get_method; in PHP_MINIT_FUNCTION() 3699 spl_handlers_dual_it.get_method = spl_dual_it_get_method; in PHP_MINIT_FUNCTION()
|
H A D | spl_directory.c | 3149 spl_filesystem_object_check_handlers.get_method = spl_filesystem_object_get_method_check; in PHP_MINIT_FUNCTION()
|
/PHP-7.3/ext/pdo/ |
H A D | pdo_dbh.c | 1421 pdo_dbh_object_handlers.get_method = dbh_method_get; in pdo_dbh_init()
|
H A D | pdo_stmt.c | 2291 pdo_dbstmt_object_handlers.get_method = dbstmt_method_get; in pdo_stmt_init()
|
Completed in 206 milliseconds