Lines Matching refs:function_name

183 				ZSTR_VAL(active_function->common.function_name),  in zend_wrong_parameters_none_error()
203 ZSTR_VAL(active_function->common.function_name), in zend_wrong_parameters_none_exception()
223 ZSTR_VAL(active_function->common.function_name), in zend_wrong_parameters_count_error()
242 ZSTR_VAL(active_function->common.function_name), in zend_wrong_parameters_count_exception()
866 ZSTR_VAL(active_function->common.function_name), msg); in zend_parse_parameters_debug_error()
947 ZSTR_VAL(active_function->common.function_name), in zend_parse_va_args()
2093 if (ZSTR_VAL(fptr->common.function_name)[0] != '_' in zend_check_magic_method_implementation()
2094 || ZSTR_VAL(fptr->common.function_name)[1] != '_') { in zend_check_magic_method_implementation()
2100 name_len = ZSTR_LEN(fptr->common.function_name); in zend_check_magic_method_implementation()
2101 …zend_str_tolower_copy(lcname, ZSTR_VAL(fptr->common.function_name), MIN(name_len, sizeof(lcname)-1… in zend_check_magic_method_implementation()
2199 internal_function->function_name = zend_string_init_interned(ptr->fname, fname_len, 1); in zend_register_functions()
2282 …lowercase_name = zend_string_tolower_ex(internal_function->function_name, type == MODULE_PERSISTEN… in zend_register_functions()
2415 …nstructor %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(ctor->common.function_name)); in zend_register_functions()
2422 …estructor %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(dtor->common.function_name)); in zend_register_functions()
2428 …r_type, "%s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(clone->common.function_name)); in zend_register_functions()
2434 …"Method %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(__call->common.function_name)); in zend_register_functions()
2440 …hod %s::%s() must be static", ZSTR_VAL(scope->name), ZSTR_VAL(__callstatic->common.function_name)); in zend_register_functions()
2446 …hod %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(__tostring->common.function_name)); in zend_register_functions()
2452 … "Method %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(__get->common.function_name)); in zend_register_functions()
2458 … "Method %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(__set->common.function_name)); in zend_register_functions()
2464 …Method %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(__unset->common.function_name)); in zend_register_functions()
2470 …Method %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(__isset->common.function_name)); in zend_register_functions()
2476 …od %s::%s() cannot be static", ZSTR_VAL(scope->name), ZSTR_VAL(__debugInfo->common.function_name)); in zend_register_functions()
2481 …::%s() cannot declare a return type", ZSTR_VAL(scope->name), ZSTR_VAL(ctor->common.function_name)); in zend_register_functions()
2485 …::%s() cannot declare a return type", ZSTR_VAL(scope->name), ZSTR_VAL(dtor->common.function_name)); in zend_register_functions()
2489 …:%s() cannot declare a return type", ZSTR_VAL(scope->name), ZSTR_VAL(clone->common.function_name)); in zend_register_functions()
2847 ZEND_API int zend_disable_function(char *function_name, size_t function_name_length) /* {{{ */ in zend_disable_function() argument
2850 if ((func = zend_hash_str_find_ptr(CG(function_table), function_name, function_name_length))) { in zend_disable_function()
3153 fcc->function_handler->common.function_name) { in zend_is_callable_check_func()
3154 zend_string_release_ex(fcc->function_handler->common.function_name, 0); in zend_is_callable_check_func()
3188 …:%s()", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); in zend_is_callable_check_func()
3191 …:%s()", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); in zend_is_callable_check_func()
3209 …, ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name), verb); in zend_is_callable_check_func()
3215 …, ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name), verb); in zend_is_callable_check_func()
3217 …, ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name), verb); in zend_is_callable_check_func()
3229 …:%s()", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); in zend_is_callable_check_func()
3240 …:%s()", ZSTR_VAL(fcc->calling_scope->name), ZSTR_VAL(fcc->function_handler->common.function_name)); in zend_is_callable_check_func()
3378 fcc->function_handler->common.function_name) { in zend_is_callable_impl()
3379 zend_string_release_ex(fcc->function_handler->common.function_name, 0); in zend_is_callable_impl()
3487 add_next_index_str(callable, zend_string_copy(fcc.function_handler->common.function_name)); in zend_make_callable()
3494 zend_string_release_ex(fcc.function_handler->common.function_name, 0); in zend_make_callable()
3512 ZVAL_COPY_VALUE(&fci->function_name, callable); in zend_fcall_info_init()
4284 return f->common.function_name; in zend_resolve_method_name()
4291 return f->common.function_name; in zend_resolve_method_name()
4293 if (ZSTR_LEN(name) == ZSTR_LEN(f->common.function_name) && in zend_resolve_method_name()
4294 …!strncasecmp(ZSTR_VAL(name), ZSTR_VAL(f->common.function_name), ZSTR_LEN(f->common.function_name))… in zend_resolve_method_name()
4295 return f->common.function_name; in zend_resolve_method_name()
4300 return f->common.function_name; in zend_resolve_method_name()