Home
last modified time | relevance | path

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

12

/PHP-7.1/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 [%u|b%"param_count"]=>
/PHP-7.1/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.1/Zend/
H A Dzend_interfaces.c34 …t char *function_name, size_t function_name_len, zval *retval_ptr, int param_count, zval* arg1, zv… in zend_call_method() argument
41 if (param_count > 0) { in zend_call_method()
44 if (param_count > 1) { in zend_call_method()
51 fci.param_count = param_count; in zend_call_method()
111 if (param_count > 0 && Z_ISREF(params[0]) && !Z_ISREF_P(arg1)) { in zend_call_method()
114 if (param_count > 1 && Z_ISREF(params[1]) && !Z_ISREF_P(arg2)) { in zend_call_method()
H A Dzend_API.h51 uint32_t param_count; member
250 ZEND_API int zend_get_parameters(int ht, int param_count, ...);
251 ZEND_API ZEND_ATTRIBUTE_DEPRECATED int zend_get_parameters_ex(int param_count, ...);
252 ZEND_API int _zend_get_parameters_array_ex(int param_count, zval *argument_array);
255 ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array);
257 #define zend_get_parameters_array(ht, param_count, argument_array) \ argument
258 _zend_get_parameters_array_ex(param_count, argument_array)
259 #define zend_get_parameters_array_ex(param_count, argument_array) \ argument
260 _zend_get_parameters_array_ex(param_count, argument_array)
479 _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()
3431 fci->param_count = 0; in zend_fcall_info_init()
3454 fci->param_count = 0; in zend_fcall_info_args_clear()
3460 *param_count = fci->param_count; in zend_fcall_info_args_save()
3462 fci->param_count = 0; in zend_fcall_info_args_save()
[all …]
H A Dzend_interfaces.h41 …const char *function_name, size_t function_name_len, zval *retval, int param_count, zval* arg1, zv…
H A Dzend_execute_API.c660 …ction_ex(zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[],… in _call_user_function_ex() argument
668 fci.param_count = param_count; in _call_user_function_ex()
769 func, fci->param_count, fci_cache->called_scope, fci->object); in zend_call_function()
804 for (i=0; i<fci->param_count; i++) { in zend_call_function()
1016 fcall_info.param_count = 1; in zend_lookup_class_ex()
H A Dzend_closures.c145 fci.param_count = my_param_count; in ZEND_METHOD()
246 fci.param_count = 2; in zend_closure_call_magic()
/PHP-7.1/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.c961 fci.param_count = 0; in PHP_METHOD()
3735 int param_count; local
3763 param_count = zend_hash_num_elements(function->responseParameters);
3765 param_count = 0;
3768 param_count = 1;
3771 if (param_count == 1) {
3798 } else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
/PHP-7.1/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.1/ext/spl/
H A Dspl_engine.h68 fci.param_count = argc; in spl_instantiate_arg_n()
/PHP-7.1/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.1/ext/pdo/
H A Dpdo_stmt.c739 fci->param_count = 0; in do_fetch_class_prepare()
777 fci->param_count = num_args; /* probably less */ in make_callable_ex()
815 stmt->fetch.cls.fci.param_count = 0; in do_fetch_opt_finish()
918 old_arg_count = stmt->fetch.cls.fci.param_count; in do_fetch()
1157 stmt->fetch.cls.fci.param_count = old_arg_count; in do_fetch()
1162 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()
1393 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1516 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
/PHP-7.1/ext/pdo_sqlite/
H A Dsqlite_driver.c331 fc->fci.param_count = fake_argc; in do_callback()
484 collation->fc.fci.param_count = 2; in php_sqlite3_collation_callback()
/PHP-7.1/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.1/ext/standard/
H A Darray.c966 BG(user_compare_fci).param_count = 2; in php_array_user_compare()
1087 BG(user_compare_fci).param_count = 2; in php_array_user_key_compare()
1374 BG(array_walk_fci).param_count = userdata ? 3 : 2; in php_array_walk()
3877 BG(user_compare_fci).param_count = 2;
5230 fci.param_count = 2;
5283 fci.param_count = 2;
5286 fci.param_count = 1;
5382 fci.param_count = 1;
5471 fci.param_count = n_arrays;
/PHP-7.1/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.1/ext/curl/
H A Dinterface.c1487 fci.param_count = 2; in curl_write()
1536 fci.param_count = 3; in curl_fnmatch()
1591 fci.param_count = 5; in curl_progress()
1652 fci.param_count = 3; in curl_read()
1718 fci.param_count = 2; in curl_write_header()
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_prompt.c188 fci.param_count = 0; in phpdbg_call_register()
194 phpdbg_debug("created %d params from arguments", fci.param_count); in phpdbg_call_register()
/PHP-7.1/ext/reflection/
H A Dphp_reflection.c1468 fci.param_count = ctor_argc; in _reflection_export()
1498 fci.param_count = 2; in _reflection_export()
1994 fci.param_count = num_args; in ZEND_METHOD()
2055 fci.param_count = argc; in ZEND_METHOD()
3325 fci.param_count = argc; in reflection_method_invoke()
4884 fci.param_count = num_args; in ZEND_METHOD()
4986 fci.param_count = argc; in ZEND_METHOD()

Completed in 214 milliseconds

12