Home
last modified time | relevance | path

Searched refs:params (Results 126 – 150 of 204) sorted by path

123456789

/PHP-7.4/ext/reflection/tests/
H A DReflectionParameter_toString_basic.phpt11 $params = $reflect->getParameters();
12 foreach($params as $key => $value) {
H A DReflectionProperty_getDeclaringClass_variation1.phpt16 echo "Wrong number of params:\n";
25 Wrong number of params:
H A DReflectionProperty_isDefault_basic.phpt27 echo "Wrong number of params:\n";
61 Wrong number of params:
H A Dbug26695.phpt16 $params = $methods[0]->getParameters();
18 $class = $params[0]->getClass();
H A Dclosures_003.phpt9 $params = $method->getParameters ();
11 $method = $params[0]->getDeclaringFunction ();
12 unset ($params);
H A Dclosures_003_v1.phpt9 $params = $method->getParameters ();
11 $method = $params[0]->getDeclaringFunction ();
12 unset ($params);
/PHP-7.4/ext/soap/
H A Dphp_http.c388 zval params[3]; in make_http_soap_request() local
391 ZVAL_STR_COPY(&params[0], buf); in make_http_soap_request()
392 ZVAL_LONG(&params[1], level); in make_http_soap_request()
401 ZVAL_LONG(&params[2], 0x1f); in make_http_soap_request()
405 zval_ptr_dtor(&params[0]); in make_http_soap_request()
409 zval_ptr_dtor(&params[0]); in make_http_soap_request()
1275 zval params[1]; in make_http_soap_request() local
1281 ZVAL_STRINGL(&params[0], http_body->val+10, http_body->len-10); in make_http_soap_request()
1285 ZVAL_STR_COPY(&params[0], http_body); in make_http_soap_request()
1298 zval_ptr_dtor(&params[0]); in make_http_soap_request()
[all …]
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()
H A Dsoap.c932 fci.params = NULL; in PHP_METHOD()
1972 efree(params);
2512 zval params[5]; local
2534 ZVAL_NULL(&params[1]);
2539 ZVAL_NULL(&params[2]);
2573 zval_ptr_dtor(&params[2]);
2574 zval_ptr_dtor(&params[1]);
3336 if (params) {
3340 trav = params;
3360 trav = params;
[all …]
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug50997.phpt10 $params = array('code'=>'foo');
11 $soapClient->newOperation($params);
/PHP-7.4/ext/sockets/
H A Dconversions.c71 HashTable params; /* stores pointers; has to be first */ member
79 HashTable params; /* stores pointers; has to be first */ member
990 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()
997 zend_hash_str_del(&ctx->params, KEY_CMSG_LEN, sizeof(KEY_CMSG_LEN) - 1); in to_zval_read_cmsg_data()
1176 zend_hash_str_del(&ctx->params, KEY_FILL_SOCKADDR, sizeof(KEY_FILL_SOCKADDR) - 1); in from_zval_write_msghdr_recv()
1400 …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()
1463 zend_hash_init(&ctx.params, 8, NULL, NULL, 0); in from_zval_run_conversions()
1486 zend_hash_destroy(&ctx.params); in from_zval_run_conversions()
1507 zend_hash_init(&ctx.params, 8, NULL, NULL, 0); in to_zval_run_conversions()
1509 zend_hash_str_update_ptr(&ctx.params, kv->key, kv->key_size - 1, kv->value); in to_zval_run_conversions()
[all …]
/PHP-7.4/ext/sockets/tests/
H A Dsocket_set_option_bindtodevice.phpt25 // wrong params
H A Dsocket_set_option_rcvtimeo.phpt4 -wrong params
5 -set/get params comparison
20 //wrong params
H A Dsocket_set_option_seolinger.phpt4 -wrong params
5 -set/get params comparison
20 // wrong params
H A Dsocket_set_option_sndtimeo.phpt4 -wrong params
5 -set/get params comparison
20 //wrong params
/PHP-7.4/ext/spl/
H A Dphp_spl.c420 fci.params = class_name; in PHP_FUNCTION()
478 fcall_info.params = class_name; in PHP_FUNCTION()
H A Dspl_array.c1430 zval function_name, params[2], *arg = NULL; in spl_array_method() local
1434 ZVAL_NEW_EMPTY_REF(&params[0]); in spl_array_method()
1435 ZVAL_ARR(Z_REFVAL(params[0]), aht); in spl_array_method()
1440 call_user_function(EG(function_table), NULL, &function_name, return_value, 1, params); in spl_array_method()
1448 ZVAL_COPY_VALUE(&params[1], arg); in spl_array_method()
1451 call_user_function(EG(function_table), NULL, &function_name, return_value, arg ? 2 : 1, params); in spl_array_method()
1458 ZVAL_COPY_VALUE(&params[1], arg); in spl_array_method()
1460 call_user_function(EG(function_table), NULL, &function_name, return_value, 2, params); in spl_array_method()
1466 HashTable *new_ht = Z_ARRVAL_P(Z_REFVAL(params[0])); in spl_array_method()
1472 ZVAL_NULL(Z_REFVAL(params[0])); in spl_array_method()
[all …]
H A Dspl_directory.c2070 zval *zresource_ptr = &intern->u.file.zresource, *params, retval; in spl_filesystem_file_call() local
2079 params = (zval*)safe_emalloc(num_args, sizeof(zval), 0); in spl_filesystem_file_call()
2080 params[0] = *zresource_ptr; in spl_filesystem_file_call()
2083 params[1] = *arg2; in spl_filesystem_file_call()
2086 if (zend_get_parameters_array_ex(pass_num_args, params + (arg2 ? 2 : 1)) != SUCCESS) { in spl_filesystem_file_call()
2087 efree(params); in spl_filesystem_file_call()
2097 fci.params = params; in spl_filesystem_file_call()
2113 efree(params); in spl_filesystem_file_call()
H A Dspl_engine.h67 fci.params = argv; in spl_instantiate_arg_n()
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()
/PHP-7.4/ext/spl/tests/
H A Dbug60201.phpt7 $params = $method->getParameters();
8 var_dump($params);
H A Dbug68479.phpt7 $params = $method->getParameters();
8 var_dump($params);
H A Dbug70303.phpt7 $params = $c->getParameters();
8 $param = $params[0];
H A Dspl_007.phpt7 public function __call($name, $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()

Completed in 204 milliseconds

123456789