Home
last modified time | relevance | path

Searched refs:fptr (Results 1 – 11 of 11) sorted by relevance

/PHP-7.3/ext/zend_test/
H A Dtest.c148 fptr->num_args = 1; in zend_test_class_method_get()
149 fptr->arg_info = NULL; in zend_test_class_method_get()
150 fptr->scope = (*object)->ce; in zend_test_class_method_get()
153 fptr->handler = ZEND_FN(zend_test_func); in zend_test_class_method_get()
156 return (zend_function*)fptr; in zend_test_class_method_get()
163 fptr->type = ZEND_OVERLOADED_FUNCTION; in zend_test_class_static_method_get()
164 fptr->num_args = 1; in zend_test_class_static_method_get()
165 fptr->arg_info = NULL; in zend_test_class_static_method_get()
166 fptr->scope = ce; in zend_test_class_static_method_get()
168 fptr->function_name = name; in zend_test_class_static_method_get()
[all …]
/PHP-7.3/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c278 return fptr && text ? fptr(data, text, len ? len : strlen(text)) : 0; in xml_elem_writefunc()
398 xml_elem_writefunc(fptr, EQUALS, data, EQUALS_LEN); in xml_element_serialize()
400 xml_elem_writefunc(fptr, options->encoding, data, 0); in xml_element_serialize()
405 xml_elem_writefunc(fptr, NEWLINE, data, NEWLINE_LEN); in xml_element_serialize()
410 xml_elem_writefunc(fptr, whitespace, data, depth - 2); in xml_element_serialize()
415 xml_elem_writefunc(fptr, el->name, data, 0); in xml_element_serialize()
422 xml_elem_writefunc(fptr, iter->key, data, 0); in xml_element_serialize()
425 xml_elem_writefunc(fptr, iter->val, data, 0); in xml_element_serialize()
433 xml_elem_writefunc(fptr, "None", data, 0); in xml_element_serialize()
459 xml_elem_writefunc(fptr, escaped_str, data, buflen); in xml_element_serialize()
[all …]
/PHP-7.3/ext/reflection/
H A Dphp_reflection.c117 zend_function *fptr; member
123 zend_function *fptr; member
175 if (fptr in _copy_function()
185 return fptr; in _copy_function()
192 if (fptr in _free_function()
716 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in _function_string()
743 if (fptr->common.prototype && fptr->common.prototype->common.scope) { in _function_string()
1148 reference->fptr = fptr; in reflection_parameter_factory()
1170 reference->fptr = fptr; in reflection_type_factory()
1572 intern->ptr = fptr; in ZEND_METHOD()
[all …]
/PHP-7.3/Zend/
H A Dzend_inheritance.c418 …} else if (!strcasecmp(class_name, "parent") && fptr->common.scope && fptr->common.scope->parent) { in zend_append_type_hint()
445 if (fptr->common.scope) { in zend_get_function_declaration()
447 …smart_str_appendl(&str, ZSTR_VAL(fptr->common.scope->name), strlen(ZSTR_VAL(fptr->common.scope->na… in zend_get_function_declaration()
454 if (fptr->common.arg_info) { in zend_get_function_declaration()
458 required = fptr->common.required_num_args; in zend_get_function_declaration()
459 num_args = fptr->common.num_args; in zend_get_function_declaration()
477 if (fptr->type == ZEND_INTERNAL_FUNCTION) { in zend_get_function_declaration()
489 if (fptr->type == ZEND_USER_FUNCTION) { in zend_get_function_declaration()
493 zend_op *op = fptr->op_array.opcodes; in zend_get_function_declaration()
494 zend_op *end = op + fptr->op_array.last; in zend_get_function_declaration()
[all …]
H A Dzend_API.c2100 name_len = ZSTR_LEN(fptr->common.function_name); in zend_check_magic_method_implementation()
2109 if (fptr->common.num_args != 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()
2127 if (fptr->common.num_args != 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()
[all …]
H A Dzend_API.h282 …magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type);
/PHP-7.3/ext/com_dotnet/
H A Dcom_handlers.c263 zend_internal_function f, *fptr = NULL; in com_method_get() local
277 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get()
286 fptr = &f; in com_method_get()
350 if (fptr) { in com_method_get()
353 func = emalloc(sizeof(*fptr)); in com_method_get()
354 memcpy(func, fptr, sizeof(*fptr)); in com_method_get()
/PHP-7.3/ext/date/lib/
H A Dparse_date.re2046 while (*fptr && *ptr) {
2060 if (*fptr != *ptr) {
2064 fptr++;
2070 fptr++;
2259 if (*ptr == *fptr) {
2279 if(!fptr[1]) {
2283 fptr++;
2284 if (*ptr == *fptr) {
2343 fptr++;
2353 if (*fptr) {
[all …]
H A Dparse_date.c22362 while (*fptr && *ptr) { in timelib_parse_from_format_with_map()
22376 if (*fptr != *ptr) { in timelib_parse_from_format_with_map()
22380 fptr++; in timelib_parse_from_format_with_map()
22386 fptr++; in timelib_parse_from_format_with_map()
22575 if (*ptr == *fptr) { in timelib_parse_from_format_with_map()
22595 if(!fptr[1]) { in timelib_parse_from_format_with_map()
22599 fptr++; in timelib_parse_from_format_with_map()
22600 if (*ptr == *fptr) { in timelib_parse_from_format_with_map()
22659 fptr++; in timelib_parse_from_format_with_map()
22669 if (*fptr) { in timelib_parse_from_format_with_map()
[all …]
/PHP-7.3/ext/spl/
H A Dphp_spl.c758 zend_function *fptr; in PHP_FUNCTION() local
766 if ((fptr = zend_hash_find_ptr(EG(function_table), ZSTR_KNOWN(ZEND_STR_MAGIC_AUTOLOAD)))) { in PHP_FUNCTION()
777 fptr = spl_autoload_call_fn; in PHP_FUNCTION()
779 if (EG(autoload_func) == fptr) { in PHP_FUNCTION()
/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_match.c4059 PCRE2_SPTR fptr; in match() local
4080 fptr = Feptr - 1; in match()
4081 if (!utf) fc = *fptr; else in match()
4083 BACKCHAR(fptr); in match()
4084 GETCHAR(fc, fptr); in match()
4088 Feptr = fptr; in match()

Completed in 104 milliseconds