Lines Matching refs:fptr

2070 …ic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type) /*…  in zend_check_magic_method_implementation()  argument
2075 if (ZSTR_VAL(fptr->common.function_name)[0] != '_' in zend_check_magic_method_implementation() local
2076 || ZSTR_VAL(fptr->common.function_name)[1] != '_') { in zend_check_magic_method_implementation()
2082 name_len = ZSTR_LEN(fptr->common.function_name); in zend_check_magic_method_implementation()
2083 …zend_str_tolower_copy(lcname, ZSTR_VAL(fptr->common.function_name), MIN(name_len, sizeof(lcname)-1… in zend_check_magic_method_implementation()
2086 …ame, ZEND_DESTRUCTOR_FUNC_NAME, sizeof(ZEND_DESTRUCTOR_FUNC_NAME) - 1) && fptr->common.num_args !=… in zend_check_magic_method_implementation()
2088 …memcmp(lcname, ZEND_CLONE_FUNC_NAME, sizeof(ZEND_CLONE_FUNC_NAME) - 1) && fptr->common.num_args !=… in zend_check_magic_method_implementation()
2091 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2093 } else if (QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
2097 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2099 } else if (QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2103 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2105 } else if (QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
2109 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2111 } else if (QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
2115 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2117 } else if (QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2123 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2125 } else if (QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || QUICK_ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2129 …!memcmp(lcname, ZEND_TOSTRING_FUNC_NAME, sizeof(ZEND_TOSTRING_FUNC_NAME)-1) && fptr->common.num_ar… in zend_check_magic_method_implementation()
2133 …!memcmp(lcname, ZEND_DEBUGINFO_FUNC_NAME, sizeof(ZEND_DEBUGINFO_FUNC_NAME)-1) && fptr->common.num_… in zend_check_magic_method_implementation()
3310 zend_function *fptr; in zend_get_callable_name_ex() local
3313 … && Z_OBJ_HANDLER_P(callable, get_closure)(callable, &calling_scope, &fptr, &object) == SUCCESS) { in zend_get_callable_name_ex()