Home
last modified time | relevance | path

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

12

/PHP-5.6/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-5.6/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c520 *copies = mnd_ecalloc(param_count, sizeof(zval *)); in mysqlnd_stmt_copy_it()
540 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_free_copies()
585 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_prepare_param_types()
644 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_types()
687 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_calculate_param_values_size()
695 for (j = i + 1; j < stmt->param_count; j++) { in mysqlnd_stmt_execute_calculate_param_values_size()
699 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i TSRMLS_CC)) { in mysqlnd_stmt_execute_calculate_param_values_size()
713 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i TSRMLS_CC)) { in mysqlnd_stmt_execute_calculate_param_values_size()
748 if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i TSRMLS_CC)) { in mysqlnd_stmt_execute_calculate_param_values_size()
772 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_param_values()
[all …]
H A Dmysqlnd_ps.c279 for (;i < stmt->param_count; i++) { in mysqlnd_stmt_skip_metadata()
327 stmt->param_count = prepare_resp->param_count; in mysqlnd_stmt_read_prepare_response()
425 if (stmt_to_prepare->param_count) { in MYSQLND_METHOD()
674 if (stmt->param_count) { in MYSQLND_METHOD()
1319 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1422 if (stmt->param_count) { in MYSQLND_METHOD()
1487 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1495 if (stmt->param_count) { in MYSQLND_METHOD()
1546 if (stmt->param_count) { in MYSQLND_METHOD()
1725 return stmt? stmt->param_count : 0; in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_wireprotocol.h263 unsigned int param_count; member
/PHP-5.6/ext/soap/
H A Dphp_packet_soap.c31 int param_count = 0; in parse_packet_soap() local
335 param_count++; in parse_packet_soap()
370 ++param_count; in parse_packet_soap()
379 if (param_count == 0) { in parse_packet_soap()
382 } else if (param_count == 1) { in parse_packet_soap()
H A Dsoap.c930 fci.param_count = 0; in PHP_METHOD()
3780 int param_count; local
3808 param_count = zend_hash_num_elements(function->responseParameters);
3810 param_count = 0;
3813 param_count = 1;
3816 if (param_count == 1) {
3843 } else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
/PHP-5.6/ext/dom/
H A Dxpath.c116 fci.param_count = nargs - 1; in dom_xpath_ext_function_php()
117 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
118 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); in dom_xpath_ext_function_php()
119 args = safe_emalloc(fci.param_count, sizeof(zval *), 0); in dom_xpath_ext_function_php()
187 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
248 if (fci.param_count > 0) { in dom_xpath_ext_function_php()
/PHP-5.6/Zend/
H A Dzend_API.h49 zend_uint param_count; member
239 ZEND_API int zend_get_parameters(int ht, int param_count, ...);
240 ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument_array TSRMLS_DC);
241 ZEND_API ZEND_ATTRIBUTE_DEPRECATED int zend_get_parameters_ex(int param_count, ...);
242 ZEND_API int _zend_get_parameters_array_ex(int param_count, zval ***argument_array TSRMLS_DC);
245 ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array TSRMLS_DC);
247 #define zend_get_parameters_array(ht, param_count, argument_array) \ argument
248 _zend_get_parameters_array(ht, param_count, argument_array TSRMLS_CC)
249 #define zend_get_parameters_array_ex(param_count, argument_array) \ argument
250 _zend_get_parameters_array_ex(param_count, argument_array TSRMLS_CC)
[all …]
H A Dzend_execute_API.c575 …le, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[]… in call_user_function() argument
582 if (param_count) { in call_user_function()
583 params_array = (zval ***) emalloc(sizeof(zval **)*param_count); in call_user_function()
584 for (i=0; i<param_count; i++) { in call_user_function()
590 …nction_ex(function_table, object_pp, function_name, &local_retval_ptr, param_count, params_array, … in call_user_function()
612 fci.param_count = param_count; in call_user_function_ex()
718 ZEND_VM_STACK_GROW_IF_NEEDED(fci->param_count + 1); in zend_call_function()
720 for (i=0; i<fci->param_count; i++) { in zend_call_function()
772 zend_vm_stack_push((void*)(zend_uintptr_t)fci->param_count TSRMLS_CC); in zend_call_function()
850 …EX(function_state).function->internal_function.handler(fci->param_count, *fci->retval_ptr_ptr, fci… in zend_call_function()
[all …]
H A Dzend_API.c60 va_start(ptr, param_count); in zend_get_parameters()
62 while (param_count-->0) { in zend_get_parameters()
98 while (param_count-->0) { in _zend_get_parameters_array()
137 while (param_count-->0) { in zend_get_parameters_ex()
159 while (param_count-->0) { in _zend_get_parameters_array_ex()
182 while (param_count-->0) { in zend_copy_parameters_array()
3305 fci->param_count = 0; in zend_fcall_info_init()
3322 fci->param_count = 0; in zend_fcall_info_args_clear()
3328 *param_count = fci->param_count; in zend_fcall_info_args_save()
3330 fci->param_count = 0; in zend_fcall_info_args_save()
[all …]
H A Dzend_interfaces.h41 …char *function_name, int function_name_len, zval **retval_ptr_ptr, int param_count, zval* arg1, zv…
H A Dzend_interfaces.c34 …char *function_name, int function_name_len, zval **retval_ptr_ptr, int param_count, zval* arg1, zv… in zend_call_method() argument
52 fci.param_count = param_count; in zend_call_method()
H A Dzend_exceptions.c704 fci.param_count = 0; in ZEND_METHOD()
/PHP-5.6/ext/spl/
H A Dspl_engine.h71 fci.param_count = argc; in spl_instantiate_arg_n()
/PHP-5.6/ext/xsl/
H A Dxsltprocessor.c233 fci.param_count = nargs - 1; in xsl_ext_function_php()
234 if (fci.param_count > 0) { in xsl_ext_function_php()
235 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); in xsl_ext_function_php()
236 args = safe_emalloc(fci.param_count, sizeof(zval *), 0); in xsl_ext_function_php()
317 if (fci.param_count > 0) { in xsl_ext_function_php()
379 if (fci.param_count > 0) { in xsl_ext_function_php()
/PHP-5.6/ext/pdo/
H A Dpdo_stmt.c797 fci->param_count = num_args; /* probably less */ in make_callable_ex()
829 stmt->fetch.cls.fci.param_count = 0; in do_fetch_opt_finish()
935 old_arg_count = stmt->fetch.cls.fci.param_count; in do_fetch()
1179 stmt->fetch.cls.fci.param_count = old_arg_count; in do_fetch()
1184 stmt->fetch.func.fci.param_count = idx; in do_fetch()
1335 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1369 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
1420 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1545 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_prompt.c165 fci.param_count = 0; in phpdbg_call_register()
170 fci.param_count); in phpdbg_call_register()
556 fci.param_count = 0; in phpdbg_handle_exception()
/PHP-5.6/ext/pdo_sqlite/
H A Dsqlite_driver.c334 fc->fci.param_count = fake_argc; in do_callback()
506 collation->fc.fci.param_count = 2; in php_sqlite3_collation_callback()
/PHP-5.6/ext/standard/
H A Darray.c587 BG(user_compare_fci).param_count = 2; in php_array_user_compare()
753 BG(user_compare_fci).param_count = 2; in php_array_user_key_compare()
1056 BG(array_walk_fci).param_count = userdata ? 3 : 2; in php_array_walk()
2799 BG(user_compare_fci).param_count = 2; in zval_user_compare()
4034 fci.param_count = 2; in PHP_FUNCTION()
4095 fci.param_count = 2; in PHP_FUNCTION()
4098 fci.param_count = 1; in PHP_FUNCTION()
4261 fci.param_count = n_arrays; in PHP_FUNCTION()
/PHP-5.6/ext/intl/converter/
H A Dconverter.c248 objval->to_cb.param_count = 4; in php_converter_to_u_callback()
345 objval->from_cb.param_count = 4; in php_converter_from_u_callback()
/PHP-5.6/ext/curl/
H A Dinterface.c1340 fci.param_count = 2; in curl_write()
1407 fci.param_count = 3; in curl_fnmatch()
1486 fci.param_count = 5; in curl_progress()
1561 fci.param_count = 3; in curl_read()
1639 fci.param_count = 2; in curl_write_header()
/PHP-5.6/ext/reflection/
H A Dphp_reflection.c1441 fci.param_count = ctor_argc; in _reflection_export()
1476 fci.param_count = 2; in _reflection_export()
1957 fci.param_count = num_args; in ZEND_METHOD()
2024 fci.param_count = argc; in ZEND_METHOD()
2957 fci.param_count = num_args - 1; in ZEND_METHOD()
3066 fci.param_count = argc; in ZEND_METHOD()
4310 fci.param_count = num_args; in ZEND_METHOD()
4415 fci.param_count = argc; in ZEND_METHOD()
/PHP-5.6/ext/mbstring/
H A Dphp_mbregex.c976 arg_replace_fci.param_count = 1; in _php_mb_regex_ereg_replace_exec()

Completed in 129 milliseconds

12