Home
last modified time | relevance | path

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

12

/PHP-7.2/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.2/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c519 *copies = mnd_ecalloc(param_count, sizeof(zval)); in mysqlnd_stmt_copy_it()
536 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_free_copies()
579 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_prepare_param_types()
587 PASS != mysqlnd_stmt_copy_it(copies_param, parameter, stmt->param_count, i)) in mysqlnd_stmt_execute_prepare_param_types()
635 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_types()
680 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_calculate_param_values_size()
692 for (j = i + 1; j < stmt->param_count; j++) { in mysqlnd_stmt_execute_calculate_param_values_size()
696 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i)) { in mysqlnd_stmt_execute_calculate_param_values_size()
711 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i)) { in mysqlnd_stmt_execute_calculate_param_values_size()
770 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_param_values()
[all …]
H A Dmysqlnd_ps.c268 for (;i < stmt->param_count; i++) { in mysqlnd_stmt_skip_metadata()
318 stmt->param_count = prepare_resp->param_count; in mysqlnd_stmt_read_prepare_response()
433 if (stmt_to_prepare->param_count) { in MYSQLND_METHOD()
705 if (stmt->param_count) { in MYSQLND_METHOD()
1367 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1471 if (stmt->param_count) { in MYSQLND_METHOD()
1536 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1544 if (stmt->param_count) { in MYSQLND_METHOD()
1595 if (stmt->param_count) { in MYSQLND_METHOD()
1780 return stmt? stmt->param_count : 0; in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_wireprotocol.h258 unsigned int param_count; member
/PHP-7.2/ext/soap/
H A Dphp_packet_soap.c31 int param_count = 0; in parse_packet_soap() local
334 param_count++; in parse_packet_soap()
366 ++param_count; in parse_packet_soap()
375 if (param_count == 0) { in parse_packet_soap()
378 } else if (param_count == 1) { in parse_packet_soap()
H A Dsoap.c950 fci.param_count = 0; in PHP_METHOD()
3715 int param_count; local
3743 param_count = zend_hash_num_elements(function->responseParameters);
3745 param_count = 0;
3748 param_count = 1;
3751 if (param_count == 1) {
3778 } else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
/PHP-7.2/ext/dom/
H A Dxpath.c113 fci.param_count = nargs - 1; in dom_xpath_ext_function_php()
114 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
115 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()
230 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
/PHP-7.2/Zend/
H A Dzend_interfaces.c35 …t char *function_name, size_t function_name_len, zval *retval_ptr, int param_count, zval* arg1, zv… in zend_call_method() argument
42 if (param_count > 0) { in zend_call_method()
45 if (param_count > 1) { in zend_call_method()
52 fci.param_count = param_count; in zend_call_method()
H A Dzend_API.h51 uint32_t param_count; member
258 ZEND_API int zend_get_parameters(int ht, int param_count, ...);
259 ZEND_API ZEND_ATTRIBUTE_DEPRECATED int zend_get_parameters_ex(int param_count, ...);
260 ZEND_API int _zend_get_parameters_array_ex(int param_count, zval *argument_array);
263 ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array);
265 #define zend_get_parameters_array(ht, param_count, argument_array) \ argument
266 _zend_get_parameters_array_ex(param_count, argument_array)
267 #define zend_get_parameters_array_ex(param_count, argument_array) \ argument
268 _zend_get_parameters_array_ex(param_count, argument_array)
492 _call_user_function_ex(object, function_name, retval_ptr, param_count, params, 1)
[all …]
H A Dzend_API.c62 va_start(ptr, param_count); in zend_get_parameters()
64 while (param_count-->0) { in zend_get_parameters()
97 va_start(ptr, param_count); in zend_get_parameters_ex()
98 while (param_count-->0) { in zend_get_parameters_ex()
121 while (param_count-->0) { in _zend_get_parameters_array_ex()
143 while (param_count-->0) { in zend_copy_parameters_array()
3525 fci->param_count = 0; in zend_fcall_info_init()
3548 fci->param_count = 0; in zend_fcall_info_args_clear()
3554 *param_count = fci->param_count; in zend_fcall_info_args_save()
3556 fci->param_count = 0; in zend_fcall_info_args_save()
[all …]
H A Dzend_interfaces.h42 …const char *function_name, size_t function_name_len, zval *retval, int param_count, zval* arg1, zv…
H A Dzend_execute_API.c643 …ction_ex(zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[],… in _call_user_function_ex() argument
651 fci.param_count = param_count; in _call_user_function_ex()
747 func, fci->param_count, fci_cache->called_scope, fci->object); in zend_call_function()
763 for (i=0; i<fci->param_count; i++) { in zend_call_function()
979 fcall_info.param_count = 1; in zend_lookup_class_ex()
H A Dzend_closures.c142 fci.param_count = my_param_count; in ZEND_METHOD()
243 fci.param_count = 2; in ZEND_NAMED_FUNCTION()
/PHP-7.2/ext/spl/
H A Dspl_engine.h68 fci.param_count = argc; in spl_instantiate_arg_n()
/PHP-7.2/ext/xsl/
H A Dxsltprocessor.c226 fci.param_count = nargs - 1; in xsl_ext_function_php()
227 if (fci.param_count > 0) { in xsl_ext_function_php()
228 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()
368 if (fci.param_count > 0) { in xsl_ext_function_php()
/PHP-7.2/ext/pdo/
H A Dpdo_stmt.c735 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()
914 old_arg_count = stmt->fetch.cls.fci.param_count; in do_fetch()
1153 stmt->fetch.cls.fci.param_count = old_arg_count; in do_fetch()
1158 stmt->fetch.func.fci.param_count = idx; in do_fetch()
1310 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1342 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
1397 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1520 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
/PHP-7.2/ext/pdo_sqlite/
H A Dsqlite_driver.c335 fc->fci.param_count = fake_argc; in do_callback()
488 collation->fc.fci.param_count = 2; in php_sqlite3_collation_callback()
/PHP-7.2/ext/intl/uchar/
H A Duchar.c199 context->fci.param_count = 3; in enumCharType_callback()
313 context->fci.param_count = 3; in enumCharNames_callback()
/PHP-7.2/ext/intl/converter/
H A Dconverter.c236 objval->to_cb.param_count = 4; in php_converter_to_u_callback()
318 objval->from_cb.param_count = 4; in php_converter_from_u_callback()
/PHP-7.2/ext/standard/
H A Darray.c981 BG(user_compare_fci).param_count = 2; in php_array_user_compare()
1102 BG(user_compare_fci).param_count = 2; in php_array_user_key_compare()
1387 BG(array_walk_fci).param_count = userdata ? 3 : 2; in php_array_walk()
4604 BG(user_compare_fci).param_count = 2;
5949 fci.param_count = 2;
6005 fci.param_count = 2;
6008 fci.param_count = 1;
6105 fci.param_count = 1;
6192 fci.param_count = n_arrays;
/PHP-7.2/ext/curl/
H A Dinterface.c1485 fci.param_count = 2; in curl_write()
1534 fci.param_count = 3; in curl_fnmatch()
1589 fci.param_count = 5; in curl_progress()
1650 fci.param_count = 3; in curl_read()
1716 fci.param_count = 2; in curl_write_header()
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_prompt.c185 fci.param_count = 0; in phpdbg_call_register()
191 phpdbg_debug("created %d params from arguments", fci.param_count); in phpdbg_call_register()
/PHP-7.2/ext/reflection/
H A Dphp_reflection.c1365 fci.param_count = ctor_argc; in _reflection_export()
1395 fci.param_count = 2; in _reflection_export()
1890 fci.param_count = num_args; in ZEND_METHOD()
1956 fci.param_count = argc; in ZEND_METHOD()
3214 fci.param_count = argc; in reflection_method_invoke()
4772 fci.param_count = num_args; in ZEND_METHOD()
4878 fci.param_count = argc; in ZEND_METHOD()

Completed in 146 milliseconds

12