| /PHP_5_5/ext/dom/ |
| H A D | xpath.c | 116 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 D | sqlite_driver.c | 334 fc->fci.param_count = fake_argc; 506 collation->fc.fci.param_count = 2;
|
| /PHP_5_5/ext/soap/ |
| H A D | php_packet_soap.c | 31 int param_count = 0; local 335 param_count++; 370 ++param_count; 379 if (param_count == 0) { 382 } else if (param_count == 1) {
|
| H A D | soap.c | 922 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 D | xsltprocessor.c | 231 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 D | SAPI.c | 166 fci.param_count = 0;
|
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_ps_codec.c | 502 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 D | mysqlnd_wireprotocol.c | 1972 packet->param_count = uint2korr(p); 1985 packet->stmt_id, packet->field_count, packet->param_count);
|
| H A D | mysqlnd_wireprotocol.h | 263 unsigned int param_count; member in struct:st_mysqlnd_packet_prepare_response
|
| H A D | mysqlnd_ps.c | 261 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 D | libxml.c | 601 fci->param_count = sizeof(params)/sizeof(*params);
|
| /PHP_5_5/ext/intl/converter/ |
| H A D | converter.c | 238 objval->to_cb.param_count = 4; 335 objval->from_cb.param_count = 4;
|
| /PHP_5_5/Zend/ |
| H A D | zend_interfaces.c | 34 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 D | zend_interfaces.h | 41 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 D | zend_execute_API.c | 685 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 D | zend_API.h | 49 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 D | zend_API.c | 45 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 D | pdo_stmt.c | 764 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 D | pdo_dbh.c | 475 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 D | php_reflection.c | 1403 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 D | interface.c | 1311 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 D | mysqli.c | 1295 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 D | php_mysql.c | 2181 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 D | array.c | 587 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 D | php_mbregex.c | 972 arg_replace_fci.param_count = 1;
|