Home
last modified time | relevance | path

Searched refs:params (Results 151 – 175 of 204) sorted by relevance

123456789

/PHP-7.4/Zend/
H A Dzend_objects.c171 fci.params = NULL; in zend_objects_destroy_object()
279 fci.params = NULL; in zend_objects_clone_members()
H A Dzend_API.c3506 fci->params = NULL; in zend_fcall_info_init()
3515 if (fci->params) { in zend_fcall_info_args_clear()
3516 zval *p = fci->params; in zend_fcall_info_args_clear()
3524 efree(fci->params); in zend_fcall_info_args_clear()
3525 fci->params = NULL; in zend_fcall_info_args_clear()
3535 *params = fci->params; in zend_fcall_info_args_save()
3537 fci->params = NULL; in zend_fcall_info_args_save()
3545 fci->params = params; in zend_fcall_info_args_restore()
3551 zval *arg, *params; in zend_fcall_info_args_ex() local
3565 fci->params = params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval)); in zend_fcall_info_args_ex()
[all …]
H A Dzend_execute_API.c633 …bject, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], int no_separati… in _call_user_function_ex() argument
642 fci.params = params; in _call_user_function_ex()
759 zval *arg = &fci->params[i]; in zend_call_function()
991 fcall_info.params = args; in zend_lookup_class_ex()
H A Dzend_API.h46 zval *params; member
463 …bject, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], int no_separati…
465 #define call_user_function(function_table, object, function_name, retval_ptr, param_count, params) \ argument
466 _call_user_function_ex(object, function_name, retval_ptr, param_count, params, 1)
467 …ction_ex(function_table, object, function_name, retval_ptr, param_count, params, no_separation, sy… argument
468 _call_user_function_ex(object, function_name, retval_ptr, param_count, params, no_separation)
492 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval **params);
496 ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval *params);
H A Dzend_vm_gen.php621 $params = array(); // parameters of helpers variable
1835 global $params, $skeleton_file, $line_no;
2097 if ($kind != ZEND_VM_KIND_CALL && count($params)) {
2102 foreach ($params as $param => $x) {
2367 $op_types, $list, $opcodes, $helpers, $params, $opnames,
2528 $params[$p] = 1;
/PHP-7.4/ext/spl/
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()
/PHP-7.4/ext/pdo/tests/
H A Dpdo_029.phpt37 function execute($params = array())
H A Dpdo_030.phpt38 function execute($params = array())
H A Dbug_44861.phpt56 // Test binding params via emulated prepared query
/PHP-7.4/ext/zlib/tests/
H A D005.phpt2 gzcompress()/gzuncompress() and invalid params
H A D006.phpt2 gzdeflate()/gzinflate() and invalid params
/PHP-7.4/ext/soap/
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/pdo_mysql/
H A Dphp_pdo_mysql_int.h141 PDO_MYSQL_PARAM_BIND *params; member
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc525 * Get request params array.
545 $params = array_merge(
568 return array_filter($params, function($value) {
598 $params = $this->getRequestParams($query, $headers, $uri);
602 $this->getClient($address, $connKeepAlive)->request_data($params, false)
650 $params = $this->getRequestParams(
657 'requestId' => $client->async_request($params, false),
/PHP-7.4/ext/mysqli/tests/
H A Dbug_mysql_49406.phpt2 MySQL Bug #49406 (Binding params doesn't work when selecting a date inside a CASE-WHEN, http://bugs…
/PHP-7.4/ext/pdo_oci/
H A Doci_statement.c34 #define STMT_CALL(name, params) \ argument
36 S->last_err = name params; \
43 #define STMT_CALL_MSG(name, msg, params) \ argument
45 S->last_err = name params; \
/PHP-7.4/main/
H A Dmain.c983 PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int type, const char *form… in php_verror() argument
1066 origin_len = (int)spprintf(&origin, 0, "%s%s%s(%s)", class_name, space, function, params); in php_verror()
1205 char *params; in php_error_docref2() local
1208 spprintf(&params, 0, "%s,%s", param1, param2); in php_error_docref2()
1210 php_verror(docref, params ? params : "...", type, format, args); in php_error_docref2()
1212 if (params) { in php_error_docref2()
1213 efree(params); in php_error_docref2()
H A Dphp.h339 PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int type, const char *form…
/PHP-7.4/ext/mysqli/
H A Dmysqli_fe.c242 ZEND_ARG_ARRAY_INFO(0, params, 0)
247 ZEND_ARG_ARRAY_INFO(0, params, 0)
/PHP-7.4/ext/standard/
H A Darray.c968 BG(user_compare_fci).params = args; in php_array_user_compare()
1367 BG(array_walk_fci).params = args; in php_array_walk()
6060 fci.params = args;
6133 fci.params = args;
6214 fci.params = &arg;
6290 ZVAL_NULL(&params[i]);
6303 fci.params = params;
6310 zval_ptr_dtor(&params[i]);
6312 efree(params);
6316 zval_ptr_dtor(&params[i]);
[all …]
/PHP-7.4/ext/mbstring/
H A Dmbstring.c2330 struct mbfl_split_params *params = (struct mbfl_split_params *)data; /* cast passed data */ in mbfl_split_output() local
2332 (*params->next_filter->filter_function)(c, params->next_filter); /* decoder filter */ in mbfl_split_output()
2334 …if(params->split_length == ++params->mb_chunk_length) { /* if current chunk size reached defined c… in mbfl_split_output()
2335 …mbfl_convert_filter_flush(params->next_filter);/* concatenate separate decoded chars to the solid … in mbfl_split_output()
2336 …mbfl_memory_device *device = (mbfl_memory_device *)params->next_filter->data; /* chars container */ in mbfl_split_output()
2337 mbfl_string *chunk = params->result_string; in mbfl_split_output()
2339 …add_next_index_stringl(params->return_value, (const char *)chunk->val, chunk->len); /* add chunk t… in mbfl_split_output()
2341 params->mb_chunk_length = 0; /* reset mb_chunk size */ in mbfl_split_output()
2436 struct mbfl_split_params params = { /* init callback function params structure */ in PHP_FUNCTION() local
2449 &params); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/pdo/
H A Dpdo_stmt.c104 ZEND_ARG_INFO(0, params) in ZEND_END_ARG_INFO()
740 fci->params = NULL; in do_fetch_class_prepare()
776 fci->params = safe_emalloc(sizeof(zval), num_args, 0); in make_callable_ex()
799 if (stmt->fetch.cls.fci.size && stmt->fetch.cls.fci.params) { in do_fetch_opt_finish()
804 efree(stmt->fetch.cls.fci.params); in do_fetch_opt_finish()
806 stmt->fetch.cls.fci.params = NULL; in do_fetch_opt_finish()
1116 ZVAL_COPY_VALUE(&stmt->fetch.cls.fci.params[idx], &stmt->fetch.func.values[idx]); in do_fetch()
/PHP-7.4/ext/intl/uchar/
H A Duchar.c201 context->fci.params = args; in enumCharType_callback()
315 context->fci.params = args; in enumCharNames_callback()
/PHP-7.4/ext/pdo_sqlite/
H A Dsqlite_driver.c384 fc->fci.params = zargs; in do_callback()
495 collation->fc.fci.params = zargs; in php_sqlite3_collation_callback()

Completed in 140 milliseconds

123456789