Lines Matching refs:fptr
1737 …ic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSR… in zend_check_magic_method_implementation() argument
1744 name_len = strlen(fptr->common.function_name); in zend_check_magic_method_implementation()
1745 zend_str_tolower_copy(lcname, fptr->common.function_name, MIN(name_len, sizeof(lcname)-1)); in zend_check_magic_method_implementation()
1748 …(lcname, ZEND_DESTRUCTOR_FUNC_NAME, sizeof(ZEND_DESTRUCTOR_FUNC_NAME)) && fptr->common.num_args !=… in zend_check_magic_method_implementation()
1750 …&& !memcmp(lcname, ZEND_CLONE_FUNC_NAME, sizeof(ZEND_CLONE_FUNC_NAME)) && fptr->common.num_args !=… in zend_check_magic_method_implementation()
1753 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1755 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
1759 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
1761 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
1765 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1767 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
1771 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1773 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
1777 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
1779 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
1785 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
1787 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
1791 …!memcmp(lcname, ZEND_TOSTRING_FUNC_NAME, sizeof(ZEND_TOSTRING_FUNC_NAME)-1) && fptr->common.num_ar… in zend_check_magic_method_implementation()