Home
last modified time | relevance | path

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

12

/PHP-5.5/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.5/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c514 *copies = mnd_ecalloc(param_count, sizeof(zval *)); in mysqlnd_stmt_copy_it()
545 unsigned int null_count = (stmt->param_count + 7) / 8; in mysqlnd_stmt_execute_store_params()
580 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_params()
630 if (left < ((stmt->param_count * 2) + 20)) { in mysqlnd_stmt_execute_store_params()
633 *buf_len = offset + stmt->param_count * 2 + 20; in mysqlnd_stmt_execute_store_params()
648 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_params()
686 for (i = 0; i < stmt->param_count; i++) { in mysqlnd_stmt_execute_store_params()
693 for (j = i + 1; j < stmt->param_count; j++) { in mysqlnd_stmt_execute_store_params()
697 if (PASS != mysqlnd_stmt_copy_it(&copies, the_var, stmt->param_count, i TSRMLS_CC)) { in mysqlnd_stmt_execute_store_params()
792 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()
408 if (stmt_to_prepare->param_count) { in MYSQLND_METHOD()
653 if (stmt->param_count) { in MYSQLND_METHOD()
1292 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1395 if (stmt->param_count) { in MYSQLND_METHOD()
1460 if (param_no >= stmt->param_count) { in MYSQLND_METHOD()
1468 if (stmt->param_count) { in MYSQLND_METHOD()
1519 if (stmt->param_count) { in MYSQLND_METHOD()
1698 return stmt? stmt->param_count : 0; in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_wireprotocol.h263 unsigned int param_count; member
/PHP-5.5/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.c927 fci.param_count = 0; in PHP_METHOD()
3760 int param_count; local
3788 param_count = zend_hash_num_elements(function->responseParameters);
3790 param_count = 0;
3793 param_count = 1;
3796 if (param_count == 1) {
3823 } else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
/PHP-5.5/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.5/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_execute_API.c680 …le, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[]… in call_user_function() argument
687 if (param_count) { in call_user_function()
688 params_array = (zval ***) emalloc(sizeof(zval **)*param_count); in call_user_function()
689 for (i=0; i<param_count; i++) { in call_user_function()
695 …nction_ex(function_table, object_pp, function_name, &local_retval_ptr, param_count, params_array, … in call_user_function()
717 fci.param_count = param_count; in call_user_function_ex()
823 ZEND_VM_STACK_GROW_IF_NEEDED(fci->param_count + 1); in zend_call_function()
825 for (i=0; i<fci->param_count; i++) { in zend_call_function()
877 zend_vm_stack_push((void*)(zend_uintptr_t)fci->param_count TSRMLS_CC); in zend_call_function()
952 …((zend_internal_function *) EX(function_state).function)->handler(fci->param_count, *fci->retval_p… 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()
3249 fci->param_count = 0; in zend_fcall_info_init()
3266 fci->param_count = 0; in zend_fcall_info_args_clear()
3272 *param_count = fci->param_count; in zend_fcall_info_args_save()
3274 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()
/PHP-5.5/ext/spl/
H A Dspl_engine.h71 fci.param_count = argc; in spl_instantiate_arg_n()
/PHP-5.5/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.5/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()
1191 stmt->fetch.cls.fci.param_count = old_arg_count; in do_fetch()
1196 stmt->fetch.func.fci.param_count = idx; in do_fetch()
1347 old_arg_count = stmt->fetch.cls.fci.param_count; in PHP_METHOD()
1381 stmt->fetch.cls.fci.param_count = old_arg_count; in PHP_METHOD()
1432 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.5/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.5/ext/mysqli/
H A Dmysqli.c1302 fci.param_count = 0; in php_mysqli_fetch_into_hash()
1306 fci.params[fci.param_count++] = (zval**)p->pData; in php_mysqli_fetch_into_hash()
1320 fci.param_count = 0; in php_mysqli_fetch_into_hash()
/PHP-5.5/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()
1055 BG(array_walk_fci).param_count = userdata ? 3 : 2; in php_array_walk()
2930 BG(user_compare_fci).param_count = 2; in zval_user_compare()
4173 fci.param_count = 2; in PHP_FUNCTION()
4230 fci.param_count = 1; in PHP_FUNCTION()
4367 fci.param_count = n_arrays; in PHP_FUNCTION()
/PHP-5.5/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.5/ext/curl/
H A Dinterface.c1345 fci.param_count = 2; in curl_write()
1412 fci.param_count = 3; in curl_fnmatch()
1491 fci.param_count = 5; in curl_progress()
1566 fci.param_count = 3; in curl_read()
1644 fci.param_count = 2; in curl_write_header()
/PHP-5.5/ext/mysql/
H A Dphp_mysql.c2181 fci.param_count = 0;
2185 fci.params[fci.param_count++] = (zval**)p->pData;
2199 fci.param_count = 0;
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c1403 fci.param_count = ctor_argc; in _reflection_export()
1438 fci.param_count = 2; in _reflection_export()
1919 fci.param_count = num_args; in ZEND_METHOD()
1986 fci.param_count = argc; in ZEND_METHOD()
2891 fci.param_count = num_args - 1; in ZEND_METHOD()
3000 fci.param_count = argc; in ZEND_METHOD()
4236 fci.param_count = num_args; in ZEND_METHOD()
4341 fci.param_count = argc; in ZEND_METHOD()

Completed in 294 milliseconds

12