Home
last modified time | relevance | path

Searched refs:params (Results 101 – 125 of 196) sorted by relevance

12345678

/PHP-8.3/.github/actions/setup-windows/
H A Daction.yml8 choco install mysql -y --no-progress --params="/port:3306"
/PHP-8.3/Zend/tests/named_params/
H A Dattributes.phpt2 Named params in attributes
H A Dbacktrace.phpt2 Extra named params in backtraces
H A Dvariadic.phpt2 Additional named params are collect into variadics
/PHP-8.3/sapi/fuzzer/
H A Dfuzzer-sapi.c313 void fuzzer_call_php_func(const char *func_name, int nargs, char **params) { in fuzzer_call_php_func() argument
318 ZVAL_STRING(&args[i], params[i]); in fuzzer_call_php_func()
/PHP-8.3/Zend/tests/constexpr/
H A Dnew_named_params.phpt2 Named params in new in const expr
/PHP-8.3/ext/date/tests/
H A D005.phpt2 idate() and invalid params
H A D004.phpt2 date() format params
/PHP-8.3/ext/sockets/tests/
H A Dsocket_set_option_bindtodevice.phpt25 // wrong params
/PHP-8.3/ext/curl/tests/
H A Dbug55767.phpt2 Test curl_opt() function with POST params from array with a numeric key
/PHP-8.3/ext/odbc/
H A Dphp_odbc.c905 if (params[i].fp != -1) { in odbc_release_params()
906 close(params[i].fp); in odbc_release_params()
908 if (params[i].zstr) { in odbc_release_params()
912 efree(params); in odbc_release_params()
920 odbc_params_t *params = NULL; in PHP_FUNCTION() local
943 params[i].fp = -1; in PHP_FUNCTION()
944 params[i].zstr = NULL; in PHP_FUNCTION()
957 params[i-1].fp = -1; in PHP_FUNCTION()
958 params[i-1].zstr = tmpstr; in PHP_FUNCTION()
998 &params[i-1].vallen); in PHP_FUNCTION()
[all …]
/PHP-8.3/ext/libxml/
H A Dlibxml.c734 zval params[3]; in _php_libxml_external_entity_loader() local
742 ZVAL_STRING(&params[0], ID); in _php_libxml_external_entity_loader()
744 ZVAL_NULL(&params[0]); in _php_libxml_external_entity_loader()
747 ZVAL_STRING(&params[1], URL); in _php_libxml_external_entity_loader()
749 ZVAL_NULL(&params[1]); in _php_libxml_external_entity_loader()
751 ctxzv = &params[2]; in _php_libxml_external_entity_loader()
769 zend_call_known_fcc(&LIBXML(entity_loader_callback), &retval, 3, params, /* named_params */ NULL); in _php_libxml_external_entity_loader()
830 zval_ptr_dtor(&params[0]); in _php_libxml_external_entity_loader()
831 zval_ptr_dtor(&params[1]); in _php_libxml_external_entity_loader()
832 zval_ptr_dtor(&params[2]); in _php_libxml_external_entity_loader()
/PHP-8.3/ext/sockets/
H A Dconversions.c72 HashTable params; /* stores pointers; has to be first */ member
80 HashTable params; /* stores pointers; has to be first */ member
996 if (zend_hash_str_add_ptr(&ctx->params, KEY_CMSG_LEN, sizeof(KEY_CMSG_LEN) - 1, len_p) == NULL) { in to_zval_read_cmsg_data()
1003 zend_hash_str_del(&ctx->params, KEY_CMSG_LEN, sizeof(KEY_CMSG_LEN) - 1); in to_zval_read_cmsg_data()
1185 zend_hash_str_del(&ctx->params, KEY_FILL_SOCKADDR, sizeof(KEY_FILL_SOCKADDR) - 1); in from_zval_write_msghdr_recv()
1429 …if ((cmsg_len = zend_hash_str_find_ptr(&ctx->params, KEY_CMSG_LEN, sizeof(KEY_CMSG_LEN) - 1)) == N… in to_zval_read_fd_array()
1494 zend_hash_init(&ctx.params, 8, NULL, NULL, 0); in from_zval_run_conversions()
1517 zend_hash_destroy(&ctx.params); in from_zval_run_conversions()
1538 zend_hash_init(&ctx.params, 8, NULL, NULL, 0); in to_zval_run_conversions()
1540 zend_hash_str_update_ptr(&ctx.params, kv->key, kv->key_size - 1, kv->value); in to_zval_run_conversions()
[all …]
/PHP-8.3/ext/soap/
H A Dphp_http.c396 zval params[3]; in make_http_soap_request() local
399 ZVAL_STR_COPY(&params[0], buf); in make_http_soap_request()
400 ZVAL_LONG(&params[1], level); in make_http_soap_request()
409 ZVAL_LONG(&params[2], 0x1f); in make_http_soap_request()
413 zval_ptr_dtor(&params[0]); in make_http_soap_request()
417 zval_ptr_dtor(&params[0]); in make_http_soap_request()
1275 zval params[1]; in make_http_soap_request() local
1283 ZVAL_STR_COPY(&params[0], http_body); in make_http_soap_request()
1287 ZVAL_STR_COPY(&params[0], http_body); in make_http_soap_request()
1300 zval_ptr_dtor(&params[0]); in make_http_soap_request()
[all …]
/PHP-8.3/ext/pdo/
H A Dpdo_stmt.stub.php35 public function execute(?array $params = null): bool {} argument
/PHP-8.3/ext/pgsql/
H A Dpgsql.c1051 if (params[i]) { in _php_pgsql_free_params()
1052 efree(params[i]); in _php_pgsql_free_params()
1055 efree(params); in _php_pgsql_free_params()
1068 char **params = NULL; in PHP_FUNCTION() local
1111 params[i] = NULL; in PHP_FUNCTION()
1254 char **params = NULL; in PHP_FUNCTION() local
1297 params[i] = NULL; in PHP_FUNCTION()
3672 char **params = NULL; in PHP_FUNCTION() local
3707 params[i] = NULL; in PHP_FUNCTION()
3839 char **params = NULL; in PHP_FUNCTION() local
[all …]
/PHP-8.3/ext/zlib/tests/
H A D004-mb.phpt2 gzfile() with various invalid params
H A D004.phpt2 gzfile() with various invalid params
H A D007.phpt2 gzencode() and invalid params
/PHP-8.3/Zend/
H A Dzend_execute_API.c736 …bject, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], HashTable *name… in _call_user_function_impl() argument
750 fci.params = params; in _call_user_function_impl()
825 zval *arg = &fci->params[i]; in zend_call_function()
1031 uint32_t param_count, zval *params, HashTable *named_params) in zend_call_known_function() argument
1043 fci.params = params; in zend_call_known_function()
1068 zval params[2]; in zend_call_known_instance_method_with_2_params() local
1069 ZVAL_COPY_VALUE(&params[0], param1); in zend_call_known_instance_method_with_2_params()
1070 ZVAL_COPY_VALUE(&params[1], param2); in zend_call_known_instance_method_with_2_params()
1071 zend_call_known_instance_method(fn, object, retval_ptr, 2, params); in zend_call_known_instance_method_with_2_params()
1076 uint32_t param_count, zval *params) in zend_call_method_if_exists() argument
[all …]
/PHP-8.3/ext/pgsql/tests/
H A D23sync_query_params.phpt2 PostgreSQL sync query params
/PHP-8.3/ext/reflection/tests/
H A DReflectionClass_getStaticPropertyValue_002.phpt2 ReflectionClass::getStaticPropertyValue() - bad params
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_execute_query.phpt94 [009] mysqli::execute_query(): Argument #2 ($params) must consist of exactly 3 elements, 2 present
95 [010] mysqli::execute_query(): Argument #2 ($params) must be a list array
/PHP-8.3/Zend/tests/
H A Dcall_user_func_002.phpt2 Testing call_user_func() with autoload and passing invalid params
/PHP-8.3/ext/standard/
H A Dbasic_functions.c1512 HashTable *params; local
1518 Z_PARAM_ARRAY_HT(params)
1521 fci.named_params = params;
1543 Z_PARAM_VARIADIC('*', fci.params, fci.param_count)
1572 HashTable *params; local
1579 Z_PARAM_ARRAY_HT(params)
1584 fci.named_params = params;
1728 zval *params = NULL; local
1737 zend_fcall_info_argp(&entry.fci, param_count, params);
2320 zval *params = NULL; local
[all …]

Completed in 78 milliseconds

12345678