Home
last modified time | relevance | path

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

/PHP-8.0/ext/reflection/
H A Dphp_reflection.c130 zend_function *fptr; member
200 if (fptr in _copy_function()
210 return fptr; in _copy_function()
217 if (fptr in _free_function()
767 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in _function_string()
794 if (fptr->common.prototype && fptr->common.prototype->common.scope) { in _function_string()
1292 reference->fptr = fptr; in reflection_parameter_factory()
1802 fptr->common.attributes, 0, fptr->common.scope, target, in ZEND_METHOD()
1803 fptr->type == ZEND_USER_FUNCTION ? fptr->op_array.filename : NULL); in ZEND_METHOD()
2291 if (!fptr) { in ZEND_METHOD()
[all …]
/PHP-8.0/ext/zend_test/
H A Dtest.c319 zend_internal_function *fptr; in zend_test_class_method_get() local
327 fptr->type = ZEND_INTERNAL_FUNCTION; in zend_test_class_method_get()
328 fptr->num_args = 1; in zend_test_class_method_get()
329 fptr->scope = (*object)->ce; in zend_test_class_method_get()
332 fptr->handler = ZEND_FN(zend_test_func); in zend_test_class_method_get()
334 return (zend_function*)fptr; in zend_test_class_method_get()
340 zend_internal_function *fptr; in zend_test_class_static_method_get() local
348 fptr->type = ZEND_INTERNAL_FUNCTION; in zend_test_class_static_method_get()
349 fptr->num_args = 1; in zend_test_class_static_method_get()
350 fptr->scope = ce; in zend_test_class_static_method_get()
[all …]
/PHP-8.0/Zend/
H A Dzend_API.c2281 ce->clone = fptr; in zend_add_magic_method()
2283 ce->constructor = fptr; in zend_add_magic_method()
2286 ce->destructor = fptr; in zend_add_magic_method()
2288 ce->__get = fptr; in zend_add_magic_method()
2291 ce->__set = fptr; in zend_add_magic_method()
2294 ce->__call = fptr; in zend_add_magic_method()
2296 ce->__unset = fptr; in zend_add_magic_method()
2299 ce->__isset = fptr; in zend_add_magic_method()
2304 ce->__tostring = fptr; in zend_add_magic_method()
2306 ce->__debugInfo = fptr; in zend_add_magic_method()
[all …]
H A Dzend_inheritance.c672 if (fptr->common.scope) { in zend_get_function_declaration()
674 …smart_str_appendl(&str, ZSTR_VAL(fptr->common.scope->name), strlen(ZSTR_VAL(fptr->common.scope->na… in zend_get_function_declaration()
681 if (fptr->common.arg_info) { in zend_get_function_declaration()
683 zend_arg_info *arg_info = fptr->common.arg_info; in zend_get_function_declaration()
685 required = fptr->common.required_num_args; in zend_get_function_declaration()
686 num_args = fptr->common.num_args; in zend_get_function_declaration()
687 if (fptr->common.fn_flags & ZEND_ACC_VARIADIC) { in zend_get_function_declaration()
702 if (fptr->type == ZEND_INTERNAL_FUNCTION) { in zend_get_function_declaration()
711 if (fptr->type == ZEND_INTERNAL_FUNCTION) { in zend_get_function_declaration()
721 zend_op *op = fptr->op_array.opcodes; in zend_get_function_declaration()
[all …]
H A Dzend_API.h329 const zend_class_entry *ce, const zend_function *fptr, zend_string *lcname, int error_type);
330 ZEND_API void zend_add_magic_method(zend_class_entry *ce, zend_function *fptr, zend_string *lcname);
/PHP-8.0/ext/com_dotnet/
H A Dcom_handlers.c292 zend_internal_function f, *fptr = NULL; in com_method_get() local
306 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get()
316 fptr = &f; in com_method_get()
378 if (fptr) { in com_method_get()
381 zend_string_addref(fptr->function_name); in com_method_get()
382 func = emalloc(sizeof(*fptr)); in com_method_get()
383 memcpy(func, fptr, sizeof(*fptr)); in com_method_get()
/PHP-8.0/ext/date/lib/
H A Dparse_date.re2090 while (*fptr && *ptr) {
2104 if (*fptr != *ptr) {
2108 fptr++;
2114 fptr++;
2340 if (*ptr != *fptr) {
2361 if (!fptr[1]) {
2365 fptr++;
2366 if (*ptr != *fptr) {
2443 fptr++;
2453 if (*fptr) {
[all …]
H A Dparse_date.c25320 while (*fptr && *ptr) { in timelib_parse_from_format_with_map()
25334 if (*fptr != *ptr) { in timelib_parse_from_format_with_map()
25338 fptr++; in timelib_parse_from_format_with_map()
25344 fptr++; in timelib_parse_from_format_with_map()
25570 if (*ptr != *fptr) { in timelib_parse_from_format_with_map()
25591 if (!fptr[1]) { in timelib_parse_from_format_with_map()
25595 fptr++; in timelib_parse_from_format_with_map()
25596 if (*ptr != *fptr) { in timelib_parse_from_format_with_map()
25673 fptr++; in timelib_parse_from_format_with_map()
25683 if (*fptr) { in timelib_parse_from_format_with_map()
[all …]
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_match.c4132 PCRE2_SPTR fptr; in match() local
4153 fptr = Feptr - 1; in match()
4154 if (!utf) fc = *fptr; else in match()
4156 BACKCHAR(fptr); in match()
4157 GETCHAR(fc, fptr); in match()
4161 Feptr = fptr; in match()
/PHP-8.0/ext/opcache/
H A DZendAccelerator.c3733 zend_function *fptr; local
3735 ZEND_HASH_FOREACH_STR_KEY_PTR(&ce->function_table, lcname, fptr) {
3737 if (fptr->common.fn_flags & ZEND_ACC_HAS_RETURN_TYPE) {
3738 if (!preload_is_type_known(ce, &fptr->common.arg_info[-1].type) &&
3743 for (i = 0; i < fptr->common.num_args; i++) {
3744 if (!preload_is_type_known(ce, &fptr->common.arg_info[i].type) &&

Completed in 153 milliseconds