Searched refs:param_count (Results 1 - 25 of 35) sorted by relevance

12

/PHP_5_4/Zend/
H A Dzend_interfaces.h41 ZEND_API zval* zend_call_method(zval **object_pp, zend_class_entry *obj_ce, zend_function **fn_proxy, const char *function_name, int function_name_len, zval **retval_ptr_ptr, int param_count, zval* arg1, zval* arg2 TSRMLS_DC);
H A Dzend_interfaces.c34 ZEND_API zval* zend_call_method(zval **object_pp, zend_class_entry *obj_ce, zend_function **fn_proxy, const char *function_name, int function_name_len, zval **retval_ptr_ptr, int param_count, zval* arg1, zval* arg2 TSRMLS_DC) argument
52 fci.param_count = param_count;
H A Dzend_API.c45 ZEND_API int zend_get_parameters(int ht, int param_count, ...) /* {{{ */ argument
56 if (param_count>arg_count) {
60 va_start(ptr, param_count);
62 while (param_count-->0) {
85 ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument_array TSRMLS_DC) /* {{{ */ argument
94 if (param_count>arg_count) {
98 while (param_count-->0) {
121 ZEND_API int zend_get_parameters_ex(int param_count, ...) /* {{{ */ argument
132 if (param_count>arg_count) {
136 va_start(ptr, param_count);
147 _zend_get_parameters_array_ex(int param_count, zval ***argument_array TSRMLS_DC) argument
170 zend_copy_parameters_array(int param_count, zval *argument_array TSRMLS_DC) argument
3202 zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params) argument
3211 zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval ***params) argument
[all...]
H A Dzend_execute_API.c708 int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC) /* {{{ */ argument
715 if (param_count) {
716 params_array = (zval ***) emalloc(sizeof(zval **)*param_count);
717 for (i=0; i<param_count; i++) {
723 ex_retval = call_user_function_ex(function_table, object_pp, function_name, &local_retval_ptr, param_count, params_array, 1, NULL TSRMLS_CC);
736 int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separation, HashTable *symbol_table TSRMLS_DC) /* {{{ */ argument
745 fci.param_count = param_count;
851 ZEND_VM_STACK_GROW_IF_NEEDED(fci->param_count + 1);
853 for (i=0; i<fci->param_count;
[all...]
H A Dzend_API.h49 zend_uint param_count; member in struct:_zend_fcall_info
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) \
245 _zend_get_parameters_array(ht, param_count, argument_array TSRMLS_CC)
246 #define zend_get_parameters_array_ex(param_count, argument_array) \
247 _zend_get_parameters_array_ex(param_count, argument_arra
[all...]
/PHP_5_4/ext/dom/
H A Dxpath.c116 fci.param_count = nargs - 1;
117 if (fci.param_count > 0) {
118 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0);
119 args = safe_emalloc(fci.param_count, sizeof(zval *), 0);
187 if (fci.param_count > 0) {
248 if (fci.param_count > 0) {
/PHP_5_4/ext/pdo/
H A Dpdo_dbh.c472 fci.param_count = 0;
476 fci.params[fci.param_count++] = (zval**)p->pData;
480 fci.param_count = 0;
H A Dpdo_stmt.c764 fci->param_count = 0;
768 fci->params[fci->param_count++] = (zval**)p->pData;
772 fci->param_count = 0;
809 fci->param_count = num_args; /* probably less */
841 stmt->fetch.cls.fci.param_count = 0;
947 old_arg_count = stmt->fetch.cls.fci.param_count;
1193 stmt->fetch.cls.fci.param_count = old_arg_count;
1198 stmt->fetch.func.fci.param_count = idx;
1356 old_arg_count = stmt->fetch.cls.fci.param_count;
1390 stmt->fetch.cls.fci.param_count
[all...]
/PHP_5_4/ext/pdo_sqlite/
H A Dsqlite_driver.c334 fc->fci.param_count = fake_argc;
506 collation->fc.fci.param_count = 2;
/PHP_5_4/ext/soap/
H A Dphp_packet_soap.c31 int param_count = 0; local
335 param_count++;
370 ++param_count;
379 if (param_count == 0) {
382 } else if (param_count == 1) {
H A Dsoap.c916 fci.param_count = 0;
3665 int param_count; local
3693 param_count = zend_hash_num_elements(function->responseParameters);
3695 param_count = 0;
3698 param_count = 1;
3701 if (param_count == 1) {
3728 } else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
/PHP_5_4/ext/standard/
H A Darray.c587 BG(user_compare_fci).param_count = 2;
753 BG(user_compare_fci).param_count = 2;
1070 BG(array_walk_fci).param_count = userdata ? 3 : 2;
2885 BG(user_compare_fci).param_count = 2;
4139 fci.param_count = 2;
4196 fci.param_count = 1;
4333 fci.param_count = n_arrays;
/PHP_5_4/ext/xsl/
H A Dxsltprocessor.c231 fci.param_count = nargs - 1;
232 if (fci.param_count > 0) {
233 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0);
234 args = safe_emalloc(fci.param_count, sizeof(zval *), 0);
306 if (fci.param_count > 0) {
368 if (fci.param_count > 0) {
/PHP_5_4/main/
H A DSAPI.c166 fci.param_count = 0;
/PHP_5_4/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c569 mysqlnd_stmt_copy_it(zval *** copies, zval *original, unsigned int param_count, unsigned int current TSRMLS_DC) argument
572 *copies = mnd_ecalloc(param_count, sizeof(zval *));
603 unsigned int null_count = (stmt->param_count + 7) / 8;
637 for (i = 0; i < stmt->param_count; i++) {
643 PASS != mysqlnd_stmt_copy_it(&copies, stmt->param_bind[i].zv, stmt->param_count, i TSRMLS_CC))
667 if (left < ((stmt->param_count * 2) + 20)) {
670 *buf_len = offset + stmt->param_count * 2 + 20;
685 for (i = 0; i < stmt->param_count; i++) {
724 for (i = 0; i < stmt->param_count; i++) {
731 for (j = i + 1; j < stmt->param_count;
[all...]
H A Dmysqlnd_wireprotocol.c1957 packet->param_count = uint2korr(p);
1970 packet->stmt_id, packet->field_count, packet->param_count);
H A Dmysqlnd_wireprotocol.h263 unsigned int param_count; member in struct:st_mysqlnd_packet_prepare_response
H A Dmysqlnd_ps.c261 for (;i < stmt->param_count; i++) {
309 stmt->param_count = prepare_resp->param_count;
406 if (stmt_to_prepare->param_count) {
650 if (stmt->param_count) {
658 for (i = 0; i < stmt->param_count; i++) {
1203 for (i = 0; i < stmt->param_count; i++) {
1303 if (param_no >= stmt->param_count) {
1392 DBG_INF_FMT("stmt=%lu param_count=%u", stmt->stmt_id, stmt->param_count);
[all...]
/PHP_5_4/ext/mysqli/
H A Dmysqli_api.c747 php_mysqli_stmt_copy_it(zval *** copies, zval *original, uint param_count, uint current) argument
750 *copies = ecalloc(param_count, sizeof(zval *));
H A Dmysqli.c1281 fci.param_count = 0;
1285 fci.params[fci.param_count++] = (zval**)p->pData;
1299 fci.param_count = 0;
/PHP_5_4/ext/mbstring/
H A Dphp_mbregex.c972 arg_replace_fci.param_count = 1;
/PHP_5_4/ext/libxml/
H A Dlibxml.c601 fci->param_count = sizeof(params)/sizeof(*params);
/PHP_5_4/ext/reflection/
H A Dphp_reflection.c1403 fci.param_count = ctor_argc;
1438 fci.param_count = 2;
1919 fci.param_count = num_args;
1986 fci.param_count = argc;
2891 fci.param_count = num_args - 1;
3000 fci.param_count = argc;
4220 fci.param_count = num_args;
4318 fci.param_count = argc;
/PHP_5_4/ext/curl/
H A Dinterface.c1036 fci.param_count = 2;
1111 fci.param_count = 4;
1185 fci.param_count = 3;
1262 fci.param_count = 2;
/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;

Completed in 87 milliseconds

12