Lines Matching refs:fptr

2088 …ic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type) /*…  in zend_check_magic_method_implementation()  argument
2093 if (ZSTR_VAL(fptr->common.function_name)[0] != '_' in zend_check_magic_method_implementation() local
2094 || ZSTR_VAL(fptr->common.function_name)[1] != '_') { in zend_check_magic_method_implementation()
2100 name_len = ZSTR_LEN(fptr->common.function_name); in zend_check_magic_method_implementation()
2101 …zend_str_tolower_copy(lcname, ZSTR_VAL(fptr->common.function_name), MIN(name_len, sizeof(lcname)-1… in zend_check_magic_method_implementation()
2104 …ame, ZEND_DESTRUCTOR_FUNC_NAME, sizeof(ZEND_DESTRUCTOR_FUNC_NAME) - 1) && fptr->common.num_args !=… in zend_check_magic_method_implementation()
2106 …memcmp(lcname, ZEND_CLONE_FUNC_NAME, sizeof(ZEND_CLONE_FUNC_NAME) - 1) && fptr->common.num_args !=… in zend_check_magic_method_implementation()
2109 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2111 } else if (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 (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2121 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2123 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
2127 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2129 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
2133 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2135 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2141 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2143 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2147 …!memcmp(lcname, ZEND_TOSTRING_FUNC_NAME, sizeof(ZEND_TOSTRING_FUNC_NAME)-1) && fptr->common.num_ar… in zend_check_magic_method_implementation()
2151 …!memcmp(lcname, ZEND_DEBUGINFO_FUNC_NAME, sizeof(ZEND_DEBUGINFO_FUNC_NAME)-1) && fptr->common.num_… in zend_check_magic_method_implementation()
3311 zend_function *fptr; in zend_get_callable_name_ex() local
3314 … && Z_OBJ_HANDLER_P(callable, get_closure)(callable, &calling_scope, &fptr, &object) == SUCCESS) { in zend_get_callable_name_ex()