Home
last modified time | relevance | path

Searched refs:param_count (Results 1 – 25 of 45) sorted by relevance

12

/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_stmt_bind_limits.phpt52 if ($stmt->param_count != $num_params * $rows) {
53 … 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stmt->param_count);
56 printf("... statement with %d parameters prepared\n", $stmt->param_count);
74 if ($stmt->param_count != $num_params * $rows) {
75 … 03] Parameter count should be %d but got %d\n", $offset, $num_params * $rows, $stmt->param_count);
H A Dmysqli_class_mysqli_stmt_interface.phpt115 assert(mysqli_stmt_param_count($stmt) === $stmt->param_count);
116 printf("stmt->param_count = '%s'\n", $stmt->param_count);
154 param_count
161 param_count
188 stmt->param_count = '0'
H A D057.phpt86 ["param_count"]=>
/PHP-7.3/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c550 *copies = mnd_ecalloc(param_count, sizeof(zval)); in mysqlnd_stmt_copy_it()
567 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_free_copies()
610 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_prepare_param_types()
618 PASS != mysqlnd_stmt_copy_it(copies_param, parameter, stmt->param_count, i)) in mysqlnd_stmt_execute_prepare_param_types()
662 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_types()
707 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_calculate_param_values_size()
719 for (j = i + 1; j < stmt->param_count; j++) { in mysqlnd_stmt_execute_calculate_param_values_size()
723 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i)) { in mysqlnd_stmt_execute_calculate_param_values_size()
797 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_param_values()
879 unsigned int null_count = (stmt->param_count + 7) / 8; in mysqlnd_stmt_execute_store_params()
[all …]
H A Dmysqlnd_ps.c271 for (;i < stmt->param_count; i++) { in mysqlnd_stmt_skip_metadata()
316 stmt->param_count = prepare_resp.param_count; in mysqlnd_stmt_read_prepare_response()
422 if (stmt_to_prepare->param_count) { in MYSQLND_METHOD()
694 if (stmt->param_count) { in MYSQLND_METHOD()
1350 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1450 if (stmt->param_count) { in MYSQLND_METHOD()
1515 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1523 if (stmt->param_count) { in MYSQLND_METHOD()
1574 if (stmt->param_count) { in MYSQLND_METHOD()
1759 return stmt? stmt->param_count : 0; in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_wireprotocol.h247 unsigned int param_count; member
/PHP-7.3/ext/soap/
H A Dphp_packet_soap.c30 int param_count = 0; in parse_packet_soap() local
333 param_count++; in parse_packet_soap()
365 ++param_count; in parse_packet_soap()
374 if (param_count == 0) { in parse_packet_soap()
377 } else if (param_count == 1) { in parse_packet_soap()
/PHP-7.3/ext/dom/
H A Dxpath.c111 fci.param_count = nargs - 1; in dom_xpath_ext_function_php()
112 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
113 fci.params = safe_emalloc(fci.param_count, sizeof(zval), 0); in dom_xpath_ext_function_php()
179 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
229 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
/PHP-7.3/Zend/
H A Dzend_interfaces.c33 …t char *function_name, size_t function_name_len, zval *retval_ptr, int param_count, zval* arg1, zv… in zend_call_method() argument
40 if (param_count > 0) { in zend_call_method()
43 if (param_count > 1) { in zend_call_method()
50 fci.param_count = param_count; in zend_call_method()
H A Dzend_API.h49 uint32_t param_count; member
242 ZEND_API int _zend_get_parameters_array_ex(int param_count, zval *argument_array);
245 ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array);
247 #define zend_get_parameters_array(ht, param_count, argument_array) \ argument
248 _zend_get_parameters_array_ex(param_count, argument_array)
249 #define zend_get_parameters_array_ex(param_count, argument_array) \ argument
250 _zend_get_parameters_array_ex(param_count, argument_array)
472 _call_user_function_ex(object, function_name, retval_ptr, param_count, params, 1)
474 _call_user_function_ex(object, function_name, retval_ptr, param_count, params, no_separation)
498 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval **params);
[all …]
H A Dzend_objects.c150 fci.param_count = 0; in zend_objects_destroy_object()
251 fci.param_count = 0; in zend_objects_clone_members()
H A Dzend_interfaces.h40 …const char *function_name, size_t function_name_len, zval *retval, int param_count, zval* arg1, zv…
H A Dzend_API.c54 if (param_count>arg_count) { in _zend_get_parameters_array_ex()
58 while (param_count-->0) { in _zend_get_parameters_array_ex()
76 if (param_count>arg_count) { in zend_copy_parameters_array()
80 while (param_count-->0) { in zend_copy_parameters_array()
3514 fci->param_count = 0; in zend_fcall_info_init()
3537 fci->param_count = 0; in zend_fcall_info_args_clear()
3543 *param_count = fci->param_count; in zend_fcall_info_args_save()
3545 fci->param_count = 0; in zend_fcall_info_args_save()
3553 fci->param_count = param_count; in zend_fcall_info_args_restore()
3608 fci->param_count = argc; in zend_fcall_info_argp()
[all …]
H A Dzend_execute_API.c586 …ction_ex(zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[],… in _call_user_function_ex() argument
594 fci.param_count = param_count; in _call_user_function_ex()
684 func, fci->param_count, fci_cache->called_scope, fci->object); in zend_call_function()
700 for (i=0; i<fci->param_count; i++) { in zend_call_function()
917 fcall_info.param_count = 1; in zend_lookup_class_ex()
H A Dzend_closures.c118 fci.param_count = 0; in ZEND_METHOD()
121 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "o*", &newthis, &fci.params, &fci.param_count) == FAILU… in ZEND_METHOD()
240 fci.param_count = 2; in ZEND_NAMED_FUNCTION()
H A Dzend_object_handlers.c202 fci.param_count = 1; in zend_std_call_getter()
239 fci.param_count = 2; in zend_std_call_setter()
275 fci.param_count = 1; in zend_std_call_unsetter()
312 fci.param_count = 1; in zend_std_call_issetter()
/PHP-7.3/ext/spl/
H A Dspl_engine.h66 fci.param_count = argc; in spl_instantiate_arg_n()
H A Dphp_spl.c415 fci.param_count = 1; in PHP_FUNCTION()
473 fcall_info.param_count = 1; in PHP_FUNCTION()
/PHP-7.3/ext/xsl/
H A Dxsltprocessor.c224 fci.param_count = nargs - 1; in xsl_ext_function_php()
225 if (fci.param_count > 0) { in xsl_ext_function_php()
226 args = safe_emalloc(fci.param_count, sizeof(zval), 0); in xsl_ext_function_php()
297 if (fci.param_count > 0) { in xsl_ext_function_php()
309 if (fci.param_count > 0) { in xsl_ext_function_php()
367 if (fci.param_count > 0) { in xsl_ext_function_php()
/PHP-7.3/ext/pdo/
H A Dpdo_stmt.c737 fci->param_count = 0; in do_fetch_class_prepare()
773 fci->param_count = num_args; /* probably less */ in make_callable_ex()
811 stmt->fetch.cls.fci.param_count = 0; in do_fetch_opt_finish()
913 old_arg_count = stmt->fetch.cls.fci.param_count; in do_fetch()
1152 stmt->fetch.cls.fci.param_count = old_arg_count; in do_fetch()
1157 stmt->fetch.func.fci.param_count = idx; in do_fetch()
1309 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1341 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
1396 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1519 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
/PHP-7.3/ext/pdo_sqlite/
H A Dsqlite_driver.c332 fc->fci.param_count = fake_argc; in do_callback()
485 collation->fc.fci.param_count = 2; in php_sqlite3_collation_callback()
/PHP-7.3/ext/intl/uchar/
H A Duchar.c202 context->fci.param_count = 3; in enumCharType_callback()
316 context->fci.param_count = 3; in enumCharNames_callback()
/PHP-7.3/ext/intl/converter/
H A Dconverter.c240 objval->to_cb.param_count = 4; in php_converter_to_u_callback()
322 objval->from_cb.param_count = 4; in php_converter_from_u_callback()
/PHP-7.3/ext/standard/
H A Darray.c976 BG(user_compare_fci).param_count = 2; in php_array_user_compare()
1094 BG(user_compare_fci).param_count = 2; in php_array_user_key_compare()
1372 BG(array_walk_fci).param_count = userdata ? 3 : 2; in php_array_walk()
4589 BG(user_compare_fci).param_count = 2;
5985 fci.param_count = 2;
6041 fci.param_count = 2;
6044 fci.param_count = 1;
6139 fci.param_count = 1;
6226 fci.param_count = n_arrays;
/PHP-7.3/ext/curl/
H A Dinterface.c1568 fci.param_count = 2; in curl_write()
1617 fci.param_count = 3; in curl_fnmatch()
1672 fci.param_count = 5; in curl_progress()
1729 fci.param_count = 3; in curl_read()
1792 fci.param_count = 2; in curl_write_header()

Completed in 130 milliseconds

12