Home
last modified time | relevance | path

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

12

/PHP-5.4/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.4/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c613 *copies = mnd_ecalloc(param_count, sizeof(zval *)); in mysqlnd_stmt_copy_it()
644 unsigned int null_count = (stmt->param_count + 7) / 8; in mysqlnd_stmt_execute_store_params()
679 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_params()
729 if (left < ((stmt->param_count * 2) + 20)) { in mysqlnd_stmt_execute_store_params()
732 *buf_len = offset + stmt->param_count * 2 + 20; in mysqlnd_stmt_execute_store_params()
747 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_params()
785 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_params()
792 for (j = i + 1; j < stmt->param_count; j++) { in mysqlnd_stmt_execute_store_params()
796 if (PASS != mysqlnd_stmt_copy_it(&copies, the_var, stmt->param_count, i TSRMLS_CC)) { in mysqlnd_stmt_execute_store_params()
901 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_params()
[all …]
H A Dmysqlnd_ps.c262 for (;i < stmt->param_count; i++) { in mysqlnd_stmt_skip_metadata()
310 stmt->param_count = prepare_resp->param_count; in mysqlnd_stmt_read_prepare_response()
407 if (stmt_to_prepare->param_count) { in MYSQLND_METHOD()
652 if (stmt->param_count) { in MYSQLND_METHOD()
1307 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1410 if (stmt->param_count) { in MYSQLND_METHOD()
1475 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1483 if (stmt->param_count) { in MYSQLND_METHOD()
1534 if (stmt->param_count) { in MYSQLND_METHOD()
1713 return stmt? stmt->param_count : 0; in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_wireprotocol.h263 unsigned int param_count; member
/PHP-5.4/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.c921 fci.param_count = 0; in PHP_METHOD()
3741 int param_count; local
3769 param_count = zend_hash_num_elements(function->responseParameters);
3771 param_count = 0;
3774 param_count = 1;
3777 if (param_count == 1) {
3804 } else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
/PHP-5.4/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.4/Zend/
H A Dzend_API.h49 zend_uint param_count; member
236 ZEND_API int zend_get_parameters(int ht, int param_count, ...);
237 ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument_array TSRMLS_DC);
238 ZEND_API ZEND_ATTRIBUTE_DEPRECATED int zend_get_parameters_ex(int param_count, ...);
239 ZEND_API int _zend_get_parameters_array_ex(int param_count, zval ***argument_array TSRMLS_DC);
242 ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array TSRMLS_DC);
244 #define zend_get_parameters_array(ht, param_count, argument_array) \ argument
245 _zend_get_parameters_array(ht, param_count, argument_array TSRMLS_CC)
246 #define zend_get_parameters_array_ex(param_count, argument_array) \ argument
247 _zend_get_parameters_array_ex(param_count, argument_array TSRMLS_CC)
[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()
3186 fci->param_count = 0; in zend_fcall_info_init()
3203 fci->param_count = 0; in zend_fcall_info_args_clear()
3209 *param_count = fci->param_count; in zend_fcall_info_args_save()
3211 fci->param_count = 0; in zend_fcall_info_args_save()
[all …]
H A Dzend_execute_API.c706 …le, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[]… in call_user_function() argument
713 if (param_count) { in call_user_function()
714 params_array = (zval ***) emalloc(sizeof(zval **)*param_count); in call_user_function()
715 for (i=0; i<param_count; i++) { in call_user_function()
721 …nction_ex(function_table, object_pp, function_name, &local_retval_ptr, param_count, params_array, … in call_user_function()
743 fci.param_count = param_count; in call_user_function_ex()
849 ZEND_VM_STACK_GROW_IF_NEEDED(fci->param_count + 1); in zend_call_function()
851 for (i=0; i<fci->param_count; i++) { in zend_call_function()
903 zend_vm_stack_push_nocheck((void*)(zend_uintptr_t)fci->param_count TSRMLS_CC); in zend_call_function()
978 …((zend_internal_function *) EX(function_state).function)->handler(fci->param_count, *fci->retval_p… in zend_call_function()
[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.c695 fci.param_count = 0; in ZEND_METHOD()
/PHP-5.4/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()
313 if (fci.param_count > 0) { in xsl_ext_function_php()
375 if (fci.param_count > 0) { in xsl_ext_function_php()
/PHP-5.4/ext/pdo/
H A Dpdo_stmt.c764 fci->param_count = 0; in do_fetch_class_prepare()
772 fci->param_count = 0; in do_fetch_class_prepare()
809 fci->param_count = num_args; /* probably less */ in make_callable_ex()
841 stmt->fetch.cls.fci.param_count = 0; in do_fetch_opt_finish()
947 old_arg_count = stmt->fetch.cls.fci.param_count; in do_fetch()
1193 stmt->fetch.cls.fci.param_count = old_arg_count; in do_fetch()
1198 stmt->fetch.func.fci.param_count = idx; in do_fetch()
1356 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1390 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
1441 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
[all …]
H A Dpdo_dbh.c475 fci.param_count = 0; in pdo_stmt_construct()
479 fci.params[fci.param_count++] = (zval**)p->pData; in pdo_stmt_construct()
483 fci.param_count = 0; in pdo_stmt_construct()
/PHP-5.4/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.4/ext/mysqli/
H A Dmysqli.c1288 fci.param_count = 0; in php_mysqli_fetch_into_hash()
1292 fci.params[fci.param_count++] = (zval**)p->pData; in php_mysqli_fetch_into_hash()
1306 fci.param_count = 0; in php_mysqli_fetch_into_hash()
/PHP-5.4/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()
1070 BG(array_walk_fci).param_count = userdata ? 3 : 2; in php_array_walk()
2885 BG(user_compare_fci).param_count = 2; in zval_user_compare()
4128 fci.param_count = 2; in PHP_FUNCTION()
4185 fci.param_count = 1; in PHP_FUNCTION()
4322 fci.param_count = n_arrays; in PHP_FUNCTION()
/PHP-5.4/ext/curl/
H A Dinterface.c1042 fci.param_count = 2; in curl_write()
1117 fci.param_count = 4; in curl_progress()
1191 fci.param_count = 3; in curl_read()
1269 fci.param_count = 2; in curl_write_header()
/PHP-5.4/ext/mysql/
H A Dphp_mysql.c2177 fci.param_count = 0;
2181 fci.params[fci.param_count++] = (zval**)p->pData;
2195 fci.param_count = 0;
/PHP-5.4/ext/reflection/
H A Dphp_reflection.c1400 fci.param_count = ctor_argc; in _reflection_export()
1435 fci.param_count = 2; in _reflection_export()
1916 fci.param_count = num_args; in ZEND_METHOD()
1983 fci.param_count = argc; in ZEND_METHOD()
2888 fci.param_count = num_args - 1; in ZEND_METHOD()
2997 fci.param_count = argc; in ZEND_METHOD()
4217 fci.param_count = num_args; in ZEND_METHOD()
4315 fci.param_count = argc; in ZEND_METHOD()
/PHP-5.4/ext/sqlite3/
H A Dsqlite3.c704 fc->fci.param_count = fake_argc;
877 collation->fci.fci.param_count = 2;

Completed in 168 milliseconds

12