Home
last modified time | relevance | path

Searched refs:params (Results 176 – 200 of 204) sorted by relevance

123456789

/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c232 S->params = NULL; in mysql_handle_preparer()
234 S->params = ecalloc(S->num_params, sizeof(MYSQL_BIND)); in mysql_handle_preparer()
/PHP-7.4/sapi/cli/
H A Dphp_cli_server.c2567 php_cli_server_do_event_for_each_fd_callback_params *params = _params; in php_cli_server_do_event_for_each_fd_callback() local
2568 php_cli_server *server = params->server; in php_cli_server_do_event_for_each_fd_callback()
2607 params->rhandler(server, client); in php_cli_server_do_event_for_each_fd_callback()
2610 params->whandler(server, client); in php_cli_server_do_event_for_each_fd_callback()
2619 php_cli_server_do_event_for_each_fd_callback_params params = { in php_cli_server_do_event_for_each_fd() local
2625 …php_cli_server_poller_iter_on_active(&server->poller, &params, php_cli_server_do_event_for_each_fd… in php_cli_server_do_event_for_each_fd()
/PHP-7.4/ext/spl/
H A Dspl_iterators.c1964 zval params[3]; in SPL_METHOD() local
1974 ZVAL_COPY_VALUE(&params[0], &intern->current.data); in SPL_METHOD()
1975 ZVAL_COPY_VALUE(&params[1], &intern->current.key); in SPL_METHOD()
1976 ZVAL_COPY_VALUE(&params[2], &intern->inner.zobject); in SPL_METHOD()
1980 fci->params = params; in SPL_METHOD()
1992 ZVAL_COPY_VALUE(&intern->current.data, &params[0]); in SPL_METHOD()
1993 ZVAL_COPY_VALUE(&intern->current.key, &params[1]); in SPL_METHOD()
H A Dphp_spl.c420 fci.params = class_name; in PHP_FUNCTION()
478 fcall_info.params = class_name; in PHP_FUNCTION()
/PHP-7.4/Zend/
H A Dzend_object_handlers.c204 fci.params = &member; in zend_std_call_getter()
241 fci.params = args; in zend_std_call_setter()
277 fci.params = &member; in zend_std_call_unsetter()
314 fci.params = &member; in zend_std_call_issetter()
H A Dzend_exceptions.c700 fci.params = NULL; in ZEND_METHOD()
H A Dzend_vm_def.h5290 zval *params; variable
5294 params = EX_VAR(opline->result.var);
5299 array_init_size(params, arg_count - arg_num + 1);
5300 zend_hash_real_init_packed(Z_ARRVAL_P(params));
5301 ZEND_HASH_FILL_PACKED(Z_ARRVAL_P(params)) { in ZEND_HASH_FILL_PACKED() argument
5320 ZVAL_EMPTY_ARRAY(params);
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_class_mysqli_result_reflection.phpt249 Inspecting parameter 'params' of method 'fetch_object'
H A Dmysqli_stmt_big_prepare.phpt27 …$params = '(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,…
31 if ($stmt = $link->prepare("SHOW STATUS WHERE 1 = ? AND 1 IN {$params}")) {
/PHP-7.4/ext/standard/
H A Dbasic_functions.c2067 ZEND_ARG_INFO(0, params) /* ARRAY_INFO(0, params, 1) */
4930 Z_PARAM_VARIADIC('*', fci.params, fci.param_count)
4949 zval *params, retval; local
4955 Z_PARAM_ARRAY(params)
4958 zend_fcall_info_args(&fci, params);
4983 Z_PARAM_VARIADIC('*', fci.params, fci.param_count)
5012 zval *params, retval; local
5019 Z_PARAM_ARRAY(params)
5022 zend_fcall_info_args(&fci, params);
/PHP-7.4/ext/intl/converter/
H A Dconverter.c244 objval->to_cb.params = zargs; in php_converter_to_u_callback()
326 objval->from_cb.params = zargs; in php_converter_from_u_callback()
/PHP-7.4/ext/soap/
H A Dphp_sdl.c560 …xmlNodePtr node, char* wsdl_soap_namespace, sdlSoapBindingFunctionBody *binding, HashTable* params) in wsdl_soap_binding_body() argument
598 ZEND_HASH_FOREACH_PTR(params, param) { in wsdl_soap_binding_body()
616 zend_hash_destroy(params); in wsdl_soap_binding_body()
617 *params = ht; in wsdl_soap_binding_body()
2503 static HashTable* make_persistent_sdl_parameters(HashTable *params, HashTable *ptr_map) in make_persistent_sdl_parameters() argument
2512 zend_hash_init(pparams, zend_hash_num_elements(params), NULL, delete_parameter_persistent, 1); in make_persistent_sdl_parameters()
2514 ZEND_HASH_FOREACH_STR_KEY_PTR(params, key, tmp) { in make_persistent_sdl_parameters()
/PHP-7.4/ext/curl/
H A Dinterface.c1508 fci.params = argv; in curl_write()
1557 fci.params = argv; in curl_fnmatch()
1612 fci.params = argv; in curl_progress()
1669 fci.params = argv; in curl_read()
1732 fci.params = argv; in curl_write_header()
/PHP-7.4/ext/imap/
H A Dphp_imap.c107 ZEND_ARG_INFO(0, params)
1178 zval *params = NULL; in php_imap_do_open() local
1182 &passwd, &flags, &retries, &params) == FAILURE) { in php_imap_do_open()
1196 if (params) { in php_imap_do_open()
1199 …if ((disabled_auth_method = zend_hash_str_find(Z_ARRVAL_P(params), "DISABLE_AUTHENTICATOR", sizeof… in php_imap_do_open()
/PHP-7.4/ext/phar/
H A Dphar_object.c676 zval params, retval; in PHP_METHOD() local
678 ZVAL_STRINGL(&params, entry, entry_len); in PHP_METHOD()
692 fci.params = &params; in PHP_METHOD()
693 Z_ADDREF(params); in PHP_METHOD()
H A Dutil.c1419 fci.params = zp; in phar_call_openssl_signverify()
/PHP-7.4/ext/xmlrpc/
H A Dxmlrpc-epi-php.c94 ZEND_ARG_INFO(0, params)
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c814 fc->fci.params = zargs; in sqlite3_do_callback()
942 collation->fci.fci.params = zargs; in php_sqlite3_callback_compare()
/PHP-7.4/ext/mbstring/
H A Dphp_mbregex.c1196 arg_replace_fci.params = args; in _php_mb_regex_ereg_replace_exec()
/PHP-7.4/main/streams/
H A Duserspace.c312 fci.params = NULL; in user_stream_create_object()
/PHP-7.4/ext/pdo/
H A Dpdo_dbh.c467 fci.params = NULL; in pdo_stmt_construct()
/PHP-7.4/ext/mysqli/
H A Dmysqli.c1292 fci.params = NULL; in php_mysqli_fetch_into_hash()
/PHP-7.4/ext/xml/
H A Dxml.c571 fci.params = argv; in xml_call_handler()
/PHP-7.4/ext/ffi/
H A Dffi.c859 fci.params = do_alloca(sizeof(zval) *callback_data->arg_count, use_heap); in zend_ffi_callback_trampoline()
870 …zend_ffi_cdata_to_zval(NULL, args[n], arg_type, BP_VAR_R, &fci.params[n], (zend_ffi_flags)(arg_typ… in zend_ffi_callback_trampoline()
884 zval_ptr_dtor(&fci.params[n]); in zend_ffi_callback_trampoline()
887 free_alloca(fci.params, use_heap); in zend_ffi_callback_trampoline()
/PHP-7.4/ext/ldap/
H A Dldap.c3754 int _ldap_rebind_proc(LDAP *ldap, const char *url, ber_tag_t req, ber_int_t msgid, void *params) in _ldap_rebind_proc() argument
3760 zval *cb_link = (zval *) params; in _ldap_rebind_proc()

Completed in 195 milliseconds

123456789