Home
last modified time | relevance | path

Searched refs:function_name (Results 26 – 50 of 58) sorted by relevance

123

/PHP-5.5/Zend/
H A Dzend_object_handlers.c892 ZVAL_STRING(method_name_ptr, func->function_name, 0); /* no dup - it's a copy */ in zend_std_call_user_call()
1002 call_user_call->function_name = estrndup(method_name, method_len); in zend_get_user_call_function()
1110 ZVAL_STRING(method_name_ptr, func->function_name, 0); /* no dup - it's a copy */ in zend_std_callstatic_user_call()
1145 callstatic_user_call->function_name = estrndup(method_name, method_len); in zend_get_user_callstatic_function()
1175 …unction_name, function_name_strlen) && memcmp(ce->constructor->common.function_name, "__", sizeof(… in zend_std_get_static_method()
1202 …ll non static method %s::%s() without object", ZEND_FN_SCOPE_NAME(fbc), fbc->common.function_name); in zend_std_get_static_method()
1319 …m context '%s'", constructor->common.scope->name, constructor->common.function_name, EG(scope)->na… in zend_std_get_constructor()
1321 …s::%s() from invalid context", constructor->common.scope->name, constructor->common.function_name); in zend_std_get_constructor()
1331 …m context '%s'", constructor->common.scope->name, constructor->common.function_name, EG(scope)->na… in zend_std_get_constructor()
1333 …s::%s() from invalid context", constructor->common.scope->name, constructor->common.function_name); in zend_std_get_constructor()
H A Dzend_vm_execute.h1226 zval *function_name; in ZEND_INIT_FCALL_BY_NAME_SPEC_CONST_HANDLER() local
1551 zval *function_name; in ZEND_INIT_FCALL_BY_NAME_SPEC_TMP_HANDLER() local
1738 zval *function_name; in ZEND_INIT_FCALL_BY_NAME_SPEC_VAR_HANDLER() local
1963 zval *function_name; in ZEND_INIT_FCALL_BY_NAME_SPEC_CV_HANDLER() local
3535 zval *function_name; in ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER() local
4527 zval *function_name; in ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_TMP_HANDLER() local
5384 zval *function_name; in ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_VAR_HANDLER() local
6110 zval *function_name; in ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_UNUSED_HANDLER() local
6972 zval *function_name; in ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CV_HANDLER() local
8944 zval *function_name; in ZEND_INIT_METHOD_CALL_SPEC_TMP_CONST_HANDLER() local
[all …]
H A Dzend_opcode.c76 op_array->function_name = NULL; in init_op_array()
394 if (op_array->function_name) { in destroy_op_array()
395 efree((char*)op_array->function_name); in destroy_op_array()
H A Dzend_API.h46 zval *function_name; member
288 ZEND_API int zend_disable_function(char *function_name, uint function_name_length TSRMLS_DC);
450 ZEND_API int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, z…
451 ZEND_API int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name
H A Dzend_exceptions.c691 fci.function_name = &fname; in ZEND_METHOD()
H A Dzend_language_scanner.l1644 func_name = CG(active_op_array)->function_name;
1658 const char *func_name = CG(active_op_array)? CG(active_op_array)->function_name : NULL;
/PHP-5.5/ext/standard/
H A Dbasic_functions.c712 ZEND_ARG_INFO(0, function_name)
718 ZEND_ARG_INFO(0, function_name)
4993 char *function_name; local
4997 if (function_name) {
4998 efree(function_name);
5002 if (function_name) {
5003 efree(function_name);
5727 char *function_name = NULL; local
5746 efree(function_name);
5748 } else if (function_name) {
[all …]
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_util_funcs.c206 …zend_hash_update(function_table, function->common.function_name, strlen(function->common.function_… in copy_internal_function()
481 …OR_PRODUCT_NAME " class loading error, class %s, function %s", ce->name, new_entry->function_name);
490 …OR_PRODUCT_NAME " class loading error, class %s, function %s", ce->name, new_entry->function_name);
882 function1->common.function_name,
886 zend_error(E_ERROR, "Cannot redeclare %s()", function1->common.function_name);
/PHP-5.5/Zend/tests/
H A Dfunction_exists_variation1.phpt7 * proto bool function_exists(string function_name)
/PHP-5.5/ext/libxml/
H A Dlibxml.c280 zval_ptr_dtor(&fci->function_name); in _php_libxml_destroy_fci()
624 fci->function_name); in _php_libxml_external_entity_loader()
631 fci->function_name); in _php_libxml_external_entity_loader()
642 fci->function_name); in _php_libxml_external_entity_loader()
1119 Z_ADDREF_P(fci.function_name); in PHP_FUNCTION()
/PHP-5.5/ext/standard/tests/general_functions/
H A Dcall_user_func_array_variation_002.phpt5 /* Prototype : mixed call_user_func_array(string function_name, array parameters)
97 // loop through each element of the array for function_name
/PHP-5.5/
H A D.gdbinit55 if $fst.function->common.function_name
98 printf "%s(", $fst.function->common.function_name
146 printf "%s() ", $fst.function->common.function_name
407 printf "\"%s\"\n", $func->common.function_name
/PHP-5.5/ext/spl/
H A Dphp_spl.c744 add_next_index_string(tmp, alfi->func_ptr->common.function_name, 1); in PHP_FUNCTION()
747 … if (strncmp(alfi->func_ptr->common.function_name, "__lambda_func", sizeof("__lambda_func") - 1)) { in PHP_FUNCTION()
748 add_next_index_string(return_value, alfi->func_ptr->common.function_name, 1); in PHP_FUNCTION()
764 add_next_index_string(return_value, EG(autoload_func)->common.function_name, 1); in PHP_FUNCTION()
H A Dspl_iterators.c1515 if (cfi->fci.function_name) { in spl_dual_it_construct()
1516 Z_ADDREF_P(cfi->fci.function_name); in spl_dual_it_construct()
1906 …2(Z_OBJCE_P(getThis()), &return_value, 0, retval, intern->u.cbfilter->fci.function_name TSRMLS_CC); in SPL_METHOD()
2317 if (object->u.cbfilter->fci.function_name) { in spl_dual_it_free_storage()
2318 zval_ptr_dtor(&object->u.cbfilter->fci.function_name); in spl_dual_it_free_storage()
/PHP-5.5/ext/pdo_sqlite/
H A Dsqlite_driver.c330 fc->fci.function_name = cb; in do_callback()
494 collation->fc.fci.function_name = collation->callback; in php_sqlite3_collation_callback()
/PHP-5.5/ext/readline/
H A Dreadline_cli.c469 retval = strdup(func->common.function_name); in cli_completion_generator_func()
/PHP-5.5/ext/dom/
H A Dxpath.c200 fci.function_name = &handler; in dom_xpath_ext_function_php()
/PHP-5.5/ext/curl/
H A Dinterface.c1343 fci.function_name = t->func_name; in curl_write()
1409 fci.function_name = t->func_name; in curl_fnmatch()
1488 fci.function_name = t->func_name; in curl_progress()
1563 fci.function_name = t->func_name; in curl_read()
1640 fci.function_name = t->func_name; in curl_write_header()
/PHP-5.5/ext/mysqli/
H A Dmysqli.c1293 fci.function_name = NULL; in php_mysqli_fetch_into_hash()
1332 …LS_C), 0 TSRMLS_CC, "Could not execute %s::%s()", ce->name, ce->constructor->common.function_name); in php_mysqli_fetch_into_hash()
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c467 fci.function_name = NULL; in pdo_stmt_construct()
1313 ifunc->function_name = (char*)funcs->fname; in pdo_hash_methods()
/PHP-5.5/main/streams/
H A Duserspace.c307 fci.function_name = NULL; in user_stream_create_object()
322 …NING, "Could not execute %s::%s()", uwrap->ce->name, uwrap->ce->constructor->common.function_name); in user_stream_create_object()
/PHP-5.5/ext/opcache/Optimizer/
H A Dblock_pass.c739 char *fname = FUNCTION_CACHE->funcs[Z_LVAL(ZEND_OP1_LITERAL(fcall))].function_name; in zend_optimize_block()
2035 …derr, "File %s func %s\n", op_array->filename, op_array->function_name? op_array->function_name : … in zend_block_optimization()
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c326 fci.function_name = &handler; in xsl_ext_function_php()
/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c700 fc->fci.function_name = cb;
873 collation->fci.fci.function_name = collation->cmp_func;
/PHP-5.5/ext/mysql/
H A Dphp_mysql.c2172 fci.function_name = NULL;
2211 …LS_C), 0 TSRMLS_CC, "Could not execute %s::%s()", ce->name, ce->constructor->common.function_name);

Completed in 299 milliseconds

123