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

12

/PHP_5_5/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_5/ext/pdo_sqlite/
H A Dsqlite_driver.c334 fc->fci.param_count = fake_argc;
506 collation->fc.fci.param_count = 2;
/PHP_5_5/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.c922 fci.param_count = 0;
3676 int param_count; local
3704 param_count = zend_hash_num_elements(function->responseParameters);
3706 param_count = 0;
3709 param_count = 1;
3712 if (param_count == 1) {
3739 } else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
/PHP_5_5/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_5/main/
H A DSAPI.c166 fci.param_count = 0;
/PHP_5_5/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c502 mysqlnd_stmt_copy_it(zval *** copies, zval * original, unsigned int param_count, unsigned int current TSRMLS_DC) argument
505 *copies = mnd_ecalloc(param_count, sizeof(zval *));
536 unsigned int null_count = (stmt->param_count + 7) / 8;
570 for (i = 0; i < stmt->param_count; i++) {
576 PASS != mysqlnd_stmt_copy_it(&copies, stmt->param_bind[i].zv, stmt->param_count, i TSRMLS_CC))
600 if (left < ((stmt->param_count * 2) + 20)) {
603 *buf_len = offset + stmt->param_count * 2 + 20;
618 for (i = 0; i < stmt->param_count; i++) {
657 for (i = 0; i < stmt->param_count; i++) {
664 for (j = i + 1; j < stmt->param_count;
[all...]
H A Dmysqlnd_wireprotocol.c1972 packet->param_count = uint2korr(p);
1985 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;
407 if (stmt_to_prepare->param_count) {
651 if (stmt->param_count) {
659 for (i = 0; i < stmt->param_count; i++) {
1188 for (i = 0; i < stmt->param_count; i++) {
1288 if (param_no >= stmt->param_count) {
1377 DBG_INF_FMT("stmt=%lu param_count=%u", stmt->stmt_id, stmt->param_count);
[all...]
/PHP_5_5/ext/libxml/
H A Dlibxml.c601 fci->param_count = sizeof(params)/sizeof(*params);
/PHP_5_5/ext/intl/converter/
H A Dconverter.c238 objval->to_cb.param_count = 4;
335 objval->from_cb.param_count = 4;
/PHP_5_5/Zend/
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_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_execute_API.c685 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
692 if (param_count) {
693 params_array = (zval ***) emalloc(sizeof(zval **)*param_count);
694 for (i=0; i<param_count; i++) {
700 ex_retval = call_user_function_ex(function_table, object_pp, function_name, &local_retval_ptr, param_count, params_array, 1, NULL TSRMLS_CC);
713 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
722 fci.param_count = param_count;
828 ZEND_VM_STACK_GROW_IF_NEEDED(fci->param_count + 1);
830 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...]
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
3265 zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params) argument
3274 zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval ***params) argument
[all...]
/PHP_5_5/ext/pdo/
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...]
H A Dpdo_dbh.c475 fci.param_count = 0;
479 fci.params[fci.param_count++] = (zval**)p->pData;
483 fci.param_count = 0;
/PHP_5_5/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;
4236 fci.param_count = num_args;
4341 fci.param_count = argc;
/PHP_5_5/ext/curl/
H A Dinterface.c1311 fci.param_count = 2;
1377 fci.param_count = 3;
1455 fci.param_count = 5;
1529 fci.param_count = 3;
1606 fci.param_count = 2;
/PHP_5_5/ext/mysqli/
H A Dmysqli.c1295 fci.param_count = 0;
1299 fci.params[fci.param_count++] = (zval**)p->pData;
1313 fci.param_count = 0;
/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/standard/
H A Darray.c587 BG(user_compare_fci).param_count = 2;
753 BG(user_compare_fci).param_count = 2;
1055 BG(array_walk_fci).param_count = userdata ? 3 : 2;
2919 BG(user_compare_fci).param_count = 2;
4173 fci.param_count = 2;
4230 fci.param_count = 1;
4367 fci.param_count = n_arrays;
/PHP_5_5/ext/mbstring/
H A Dphp_mbregex.c972 arg_replace_fci.param_count = 1;

Completed in 159 milliseconds

12