Home
last modified time | relevance | path

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

/PHP-7.1/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c281 return fptr && text ? fptr(data, text, len ? len : strlen(text)) : 0; in xml_elem_writefunc()
401 xml_elem_writefunc(fptr, EQUALS, data, EQUALS_LEN); in xml_element_serialize()
403 xml_elem_writefunc(fptr, options->encoding, data, 0); in xml_element_serialize()
408 xml_elem_writefunc(fptr, NEWLINE, data, NEWLINE_LEN); in xml_element_serialize()
413 xml_elem_writefunc(fptr, whitespace, data, depth - 2); in xml_element_serialize()
418 xml_elem_writefunc(fptr, el->name, data, 0); in xml_element_serialize()
425 xml_elem_writefunc(fptr, iter->key, data, 0); in xml_element_serialize()
428 xml_elem_writefunc(fptr, iter->val, data, 0); in xml_element_serialize()
436 xml_elem_writefunc(fptr, "None", data, 0); in xml_element_serialize()
462 xml_elem_writefunc(fptr, escaped_str, data, buflen); in xml_element_serialize()
[all …]
/PHP-7.1/ext/reflection/
H A Dphp_reflection.c205 zend_function *fptr; member
211 zend_function *fptr; member
283 if (fptr in _copy_function()
293 return fptr; in _copy_function()
309 if (fptr in _free_function()
845 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in _function_string()
874 if (fptr->common.prototype && fptr->common.prototype->common.scope) { in _function_string()
1287 reference->fptr = fptr; in reflection_parameter_factory()
1309 reference->fptr = fptr; in reflection_type_factory()
1708 intern->ptr = fptr; in ZEND_METHOD()
[all …]
/PHP-7.1/Zend/
H A Dzend_inheritance.c397 if (fptr->type == ZEND_INTERNAL_FUNCTION) { in zend_append_type_hint()
408 …} else if (!strcasecmp(class_name, "parent") && fptr->common.scope && fptr->common.scope->parent) { in zend_append_type_hint()
441 if (fptr->common.scope) { in zend_get_function_declaration()
443 …smart_str_appendl(&str, ZSTR_VAL(fptr->common.scope->name), strlen(ZSTR_VAL(fptr->common.scope->na… in zend_get_function_declaration()
450 if (fptr->common.arg_info) { in zend_get_function_declaration()
454 required = fptr->common.required_num_args; in zend_get_function_declaration()
455 num_args = fptr->common.num_args; in zend_get_function_declaration()
485 if (fptr->type == ZEND_USER_FUNCTION) { in zend_get_function_declaration()
489 zend_op *op = fptr->op_array.opcodes; in zend_get_function_declaration()
490 zend_op *end = op + fptr->op_array.last; in zend_get_function_declaration()
[all …]
H A Dzend_builtin_functions.c282 fptr->num_args = 1; in zend_test_class_method_get()
283 fptr->arg_info = NULL; in zend_test_class_method_get()
284 fptr->scope = (*object)->ce; in zend_test_class_method_get()
287 fptr->handler = ZEND_FN(zend_test_func); in zend_test_class_method_get()
290 return (zend_function*)fptr; in zend_test_class_method_get()
296 fptr->type = ZEND_OVERLOADED_FUNCTION; in zend_test_class_static_method_get()
297 fptr->num_args = 1; in zend_test_class_static_method_get()
298 fptr->arg_info = NULL; in zend_test_class_static_method_get()
299 fptr->scope = ce; in zend_test_class_static_method_get()
301 fptr->function_name = name; in zend_test_class_static_method_get()
[all …]
H A Dzend_API.c2059 name_len = ZSTR_LEN(fptr->common.function_name); in zend_check_magic_method_implementation()
2068 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2070 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
2074 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2076 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2080 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2086 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2092 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2094 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2100 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
[all …]
H A Dzend_API.h289 …magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type);
/PHP-7.1/ext/com_dotnet/
H A Dcom_handlers.c260 zend_internal_function f, *fptr = NULL; in com_method_get() local
274 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get()
283 fptr = &f; in com_method_get()
347 if (fptr) { in com_method_get()
350 func = emalloc(sizeof(*fptr)); in com_method_get()
351 memcpy(func, fptr, sizeof(*fptr)); in com_method_get()
/PHP-7.1/ext/date/lib/
H A Dparse_date.re1925 while (*fptr && *ptr) {
1927 switch (*fptr) {
2114 if (*ptr == *fptr) {
2134 if(!fptr[1]) {
2138 fptr++;
2139 if (*ptr == *fptr) {
2160 fptr++;
2170 while (*fptr == '+') {
2171 fptr++;
2173 if (*fptr) {
[all …]
H A Dparse_date.c25031 while (*fptr && *ptr) { in timelib_parse_from_format()
25033 switch (*fptr) { in timelib_parse_from_format()
25220 if (*ptr == *fptr) { in timelib_parse_from_format()
25240 if(!fptr[1]) { in timelib_parse_from_format()
25244 fptr++; in timelib_parse_from_format()
25245 if (*ptr == *fptr) { in timelib_parse_from_format()
25266 fptr++; in timelib_parse_from_format()
25276 while (*fptr == '+') { in timelib_parse_from_format()
25277 fptr++; in timelib_parse_from_format()
25279 if (*fptr) { in timelib_parse_from_format()
[all …]
/PHP-7.1/ext/spl/
H A Dphp_spl.c714 zend_function *fptr; in PHP_FUNCTION() local
722 …if ((fptr = zend_hash_str_find_ptr(EG(function_table), ZEND_AUTOLOAD_FUNC_NAME, sizeof(ZEND_AUTOLO… in PHP_FUNCTION()
730fptr = zend_hash_str_find_ptr(EG(function_table), "spl_autoload_call", sizeof("spl_autoload_call")… in PHP_FUNCTION()
732 if (EG(autoload_func) == fptr) { in PHP_FUNCTION()
/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_exec.c5661 PCRE_PUCHAR fptr; in match() local
5682 fptr = eptr - 1; in match()
5683 if (!utf) c = *fptr; else in match()
5685 BACKCHAR(fptr); in match()
5686 GETCHAR(c, fptr); in match()
5690 eptr = fptr; in match()

Completed in 117 milliseconds