Lines Matching refs:function_name

775 								active_function->common.function_name);  in zend_parse_va_args()
795 active_function->common.function_name); in zend_parse_va_args()
818 active_function->common.function_name, in zend_parse_va_args()
1972 name_len = strlen(fptr->common.function_name); in zend_check_magic_method_implementation()
1973 zend_str_tolower_copy(lcname, fptr->common.function_name, MIN(name_len, sizeof(lcname)-1)); in zend_check_magic_method_implementation()
2066 internal_function->function_name = (char*)ptr->fname; in zend_register_functions()
2219 …rror(error_type, "Constructor %s::%s() cannot be static", scope->name, ctor->common.function_name); in zend_register_functions()
2226 …error(error_type, "Destructor %s::%s() cannot be static", scope->name, dtor->common.function_name); in zend_register_functions()
2233 …ror(error_type, "Constructor %s::%s() cannot be static", scope->name, clone->common.function_name); in zend_register_functions()
2239 …d_error(error_type, "Method %s::%s() cannot be static", scope->name, __call->common.function_name); in zend_register_functions()
2245 …ror(error_type, "Method %s::%s() must be static", scope->name, __callstatic->common.function_name); in zend_register_functions()
2251 …ror(error_type, "Method %s::%s() cannot be static", scope->name, __tostring->common.function_name); in zend_register_functions()
2257 …nd_error(error_type, "Method %s::%s() cannot be static", scope->name, __get->common.function_name); in zend_register_functions()
2263 …nd_error(error_type, "Method %s::%s() cannot be static", scope->name, __set->common.function_name); in zend_register_functions()
2269 …_error(error_type, "Method %s::%s() cannot be static", scope->name, __unset->common.function_name); in zend_register_functions()
2275 …_error(error_type, "Method %s::%s() cannot be static", scope->name, __isset->common.function_name); in zend_register_functions()
2629 ZEND_API int zend_disable_function(char *function_name, uint function_name_length TSRMLS_DC) /* {{{… in zend_disable_function() argument
2631 if (zend_hash_del(CG(function_table), function_name, function_name_length+1)==FAILURE) { in zend_disable_function()
2634 disabled_function[0].fname = function_name; in zend_disable_function()
2878 fcc->function_handler->internal_function.function_name = estrndup(mname, mlen); in zend_is_callable_check_func()
2889 efree((char*)fcc->function_handler->common.function_name); in zend_is_callable_check_func()
2921 … abstract method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name); in zend_is_callable_check_func()
2924 … abstract method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name); in zend_is_callable_check_func()
2943 … context %s", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb, Z_OBJCE… in zend_is_callable_check_func()
2948 … context %s", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb, Z_OBJCE… in zend_is_callable_check_func()
2952 …e called statically", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb); in zend_is_callable_check_func()
2957 …e called statically", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb); in zend_is_callable_check_func()
2968 …s private method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name); in zend_is_callable_check_func()
2978 …protected method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name); in zend_is_callable_check_func()
3072 efree((char*)fcc->function_handler->common.function_name); in zend_is_callable_ex()
3150 efree((char*)fcc->function_handler->common.function_name); in zend_is_callable_ex()
3220 add_next_index_string(callable, fcc.function_handler->common.function_name, 1); in zend_make_callable()
3228 efree((char*)fcc.function_handler->common.function_name); in zend_make_callable()
3247 fci->function_name = callable; in zend_fcall_info_init()
4014 return f->common.function_name; in zend_resolve_method_name()
4026 return f->common.function_name; in zend_resolve_method_name()
4029 if (len == strlen(f->common.function_name) && in zend_resolve_method_name()
4030 !strncasecmp(name, f->common.function_name, len)) { in zend_resolve_method_name()
4031 return f->common.function_name; in zend_resolve_method_name()
4037 return f->common.function_name; in zend_resolve_method_name()