Home
last modified time | relevance | path

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

/PHP-5.5/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-5.5/ext/reflection/
H A Dphp_reflection.c194 zend_function *fptr; member
256 if (fptr in _copy_function()
267 return fptr; in _copy_function()
274 if (fptr in _free_function()
279 efree(fptr); in _free_function()
833 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in _function_string()
861 if (fptr->common.prototype && fptr->common.prototype->common.scope) { in _function_string()
1258 reference->fptr = fptr; in reflection_parameter_factory()
2256 efree(fptr); in ZEND_METHOD()
2280 efree(fptr); in ZEND_METHOD()
[all …]
/PHP-5.5/ext/com_dotnet/
H A Dcom_handlers.c264 zend_internal_function f, *fptr = NULL; in com_method_get() local
281 …->method_cache == NULL || FAILURE == zend_hash_find(obj->method_cache, name, len, (void**)&fptr)) { in com_method_get()
290 fptr = &f; in com_method_get()
344 if (fptr) { in com_method_get()
351 zend_hash_update(obj->method_cache, name, len, &f, sizeof(f), (void**)&fptr); in com_method_get()
355 if (fptr) { in com_method_get()
358 func = emalloc(sizeof(*fptr)); in com_method_get()
359 memcpy(func, fptr, sizeof(*fptr)); in com_method_get()
/PHP-5.5/Zend/
H A Dzend_API.c1972 name_len = strlen(fptr->common.function_name); in zend_check_magic_method_implementation()
1981 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1983 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { in zend_check_magic_method_implementation()
1987 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
1989 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
1993 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
1999 if (fptr->common.num_args != 1) { in zend_check_magic_method_implementation()
2005 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
2007 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, 2)) { in zend_check_magic_method_implementation()
2013 if (fptr->common.num_args != 2) { in zend_check_magic_method_implementation()
[all …]
H A Dzend_compile.c3251 if (fptr->common.scope) { in zend_get_function_declaration()
3252 memcpy(offset, fptr->common.scope->name, fptr->common.scope->name_length); in zend_get_function_declaration()
3253 offset += fptr->common.scope->name_length; in zend_get_function_declaration()
3266 if (fptr->common.arg_info) { in zend_get_function_declaration()
3268 zend_arg_info *arg_info = fptr->common.arg_info; in zend_get_function_declaration()
3270 required = fptr->common.required_num_args; in zend_get_function_declaration()
3271 for (i = 0; i < fptr->common.num_args;) { in zend_get_function_declaration()
3276 class_name = fptr->common.scope->name; in zend_get_function_declaration()
3279 class_name = fptr->common.scope->parent->name; in zend_get_function_declaration()
3321 if (fptr->type == ZEND_USER_FUNCTION) { in zend_get_function_declaration()
[all …]
H A Dzend_API.h274 …ic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSR…
/PHP-5.5/ext/date/lib/
H A Dparse_date.re1867 while (*fptr && *ptr) {
1869 switch (*fptr) {
2057 if (*ptr == *fptr) {
2077 if(!fptr[1]) {
2081 fptr++;
2082 if (*ptr == *fptr) {
2103 fptr++;
2113 while (*fptr == '+') {
2114 fptr++;
2116 if (*fptr) {
[all …]
H A Dparse_date.c24858 while (*fptr && *ptr) { in timelib_parse_from_format()
24860 switch (*fptr) { in timelib_parse_from_format()
25048 if (*ptr == *fptr) { in timelib_parse_from_format()
25068 if(!fptr[1]) { in timelib_parse_from_format()
25072 fptr++; in timelib_parse_from_format()
25073 if (*ptr == *fptr) { in timelib_parse_from_format()
25094 fptr++; in timelib_parse_from_format()
25104 while (*fptr == '+') { in timelib_parse_from_format()
25105 fptr++; in timelib_parse_from_format()
25107 if (*fptr) { in timelib_parse_from_format()
[all …]
/PHP-5.5/ext/spl/
H A Dphp_spl.c706 zend_function *fptr; in PHP_FUNCTION() local
715 …on_table), ZEND_AUTOLOAD_FUNC_NAME, sizeof(ZEND_AUTOLOAD_FUNC_NAME), (void **) &fptr) == SUCCESS) { in PHP_FUNCTION()
723 …d_hash_find(EG(function_table), "spl_autoload_call", sizeof("spl_autoload_call"), (void **) &fptr); in PHP_FUNCTION()
725 if (EG(autoload_func) == fptr) { in PHP_FUNCTION()
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_exec.c5663 PCRE_PUCHAR fptr; in match() local
5684 fptr = eptr - 1; in match()
5685 if (!utf) c = *fptr; else in match()
5687 BACKCHAR(fptr); in match()
5688 GETCHAR(c, fptr); in match()
5692 eptr = fptr; in match()

Completed in 112 milliseconds