| /PHP_5_3/ext/curl/ |
| H A D | interface.c | 1030 fci.param_count = 2; 1105 fci.param_count = 4; 1179 fci.param_count = 3; 1256 fci.param_count = 2;
|
| /PHP_5_3/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_3/ext/mysqli/ |
| H A D | mysqli_api.c | 743 php_mysqli_stmt_copy_it(zval *** copies, zval *original, uint param_count, uint current) argument 746 *copies = ecalloc(param_count, sizeof(zval *));
|
| H A D | mysqli.c | 1283 fci.param_count = 0; 1287 fci.params[fci.param_count++] = (zval**)p->pData; 1301 fci.param_count = 0;
|
| /PHP_5_3/ext/pdo/ |
| H A D | pdo_dbh.c | 470 fci.param_count = 0; 474 fci.params[fci.param_count++] = (zval**)p->pData; 478 fci.param_count = 0;
|
| 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; 1357 old_arg_count = stmt->fetch.cls.fci.param_count; 1399 stmt->fetch.cls.fci.param_count [all...] |
| /PHP_5_3/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_3/ext/reflection/ |
| H A D | php_reflection.c | 1353 fci.param_count = ctor_argc; 1388 fci.param_count = 2; 1767 fci.param_count = num_args; 1834 fci.param_count = argc; 2626 fci.param_count = num_args - 1; 2735 fci.param_count = argc; 3925 fci.param_count = num_args; 4005 fci.param_count = argc;
|
| /PHP_5_3/ext/soap/ |
| H A D | php_packet_soap.c | 31 int param_count = 0; local 337 param_count++; 372 ++param_count; 381 if (param_count == 0) { 384 } else if (param_count == 1) {
|
| H A D | soap.c | 1034 fci.param_count = 0; 3898 int param_count; local 3926 param_count = zend_hash_num_elements(function->responseParameters); 3928 param_count = 0; 3931 param_count = 1; 3934 if (param_count == 1) { 3961 } else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
|
| /PHP_5_3/ext/sqlite3/ |
| H A D | sqlite3.c | 704 fc->fci.param_count = fake_argc; 869 collation->fci.fci.param_count = 2;
|
| /PHP_5_3/ext/standard/ |
| H A D | array.c | 581 BG(user_compare_fci).param_count = 2; 747 BG(user_compare_fci).param_count = 2; 1064 BG(array_walk_fci).param_count = userdata ? 3 : 2; 2875 BG(user_compare_fci).param_count = 2; 4128 fci.param_count = 2; 4185 fci.param_count = 1; 4322 fci.param_count = n_arrays;
|
| /PHP_5_3/ext/xsl/ |
| H A D | xsltprocessor.c | 222 fci.param_count = nargs - 1; 223 if (fci.param_count > 0) { 224 fci.params = safe_emalloc(fci.param_count, sizeof(zval**), 0); 225 args = safe_emalloc(fci.param_count, sizeof(zval *), 0); 296 if (fci.param_count > 0) { 357 if (fci.param_count > 0) {
|
| /PHP_5_3/main/streams/ |
| H A D | userspace.c | 309 fci.param_count = 0;
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 39 ZEND_API int zend_get_parameters(int ht, int param_count, ...) /* {{{ */ argument 50 if (param_count>arg_count) { 54 va_start(ptr, param_count); 56 while (param_count-->0) { 79 ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument_array TSRMLS_DC) /* {{{ */ argument 88 if (param_count>arg_count) { 92 while (param_count-->0) { 115 ZEND_API int zend_get_parameters_ex(int param_count, ...) /* {{{ */ argument 126 if (param_count>arg_count) { 130 va_start(ptr, param_count); 141 _zend_get_parameters_array_ex(int param_count, zval ***argument_array TSRMLS_DC) argument 164 zend_copy_parameters_array(int param_count, zval *argument_array TSRMLS_DC) argument 2957 zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval ****params) argument 2966 zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval ***params) argument [all...] |
| H A D | zend_execute_API.c | 716 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 723 if (param_count) { 724 params_array = (zval ***) emalloc(sizeof(zval **)*param_count); 725 for (i=0; i<param_count; i++) { 731 ex_retval = call_user_function_ex(function_table, object_pp, function_name, &local_retval_ptr, param_count, params_array, 1, NULL TSRMLS_CC); 744 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 753 fci.param_count = param_count; 859 ZEND_VM_STACK_GROW_IF_NEEDED(fci->param_count + 1); 861 for (i=0; i<fci->param_count; [all...] |
| 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, 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, char *function_name, int function_name_len, zval **retval_ptr_ptr, int param_count, zval* arg1, zval* arg2 TSRMLS_DC);
|
| H A D | zend_API.h | 49 zend_uint param_count; member in struct:_zend_fcall_info 227 ZEND_API int zend_get_parameters(int ht, int param_count, ...); 228 ZEND_API int _zend_get_parameters_array(int ht, int param_count, zval **argument_array TSRMLS_DC); 229 ZEND_API ZEND_ATTRIBUTE_DEPRECATED int zend_get_parameters_ex(int param_count, ...); 230 ZEND_API int _zend_get_parameters_array_ex(int param_count, zval ***argument_array TSRMLS_DC); 233 ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array TSRMLS_DC); 235 #define zend_get_parameters_array(ht, param_count, argument_array) \ 236 _zend_get_parameters_array(ht, param_count, argument_array TSRMLS_CC) 237 #define zend_get_parameters_array_ex(param_count, argument_array) \ 238 _zend_get_parameters_array_ex(param_count, argument_arra [all...] |
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_ps_codec.c | 582 mysqlnd_stmt_copy_it(zval *** copies, zval *original, unsigned int param_count, unsigned int current TSRMLS_DC) argument 585 *copies = mnd_ecalloc(param_count, sizeof(zval *)); 616 unsigned int null_count = (stmt->param_count + 7) / 8; 650 for (i = 0; i < stmt->param_count; i++) { 656 PASS != mysqlnd_stmt_copy_it(&copies, stmt->param_bind[i].zv, stmt->param_count, i TSRMLS_CC)) 680 if (left < ((stmt->param_count * 2) + 20)) { 683 *buf_len = offset + stmt->param_count * 2 + 20; 698 for (i = 0; i < stmt->param_count; i++) { 737 for (i = 0; i < stmt->param_count; i++) { 744 for (j = i + 1; j < stmt->param_count; [all...] |
| H A D | mysqlnd_structs.h | 905 unsigned int param_count; member in struct:st_mysqlnd_stmt_data
|
| H A D | mysqlnd_wireprotocol.c | 1740 packet->param_count = uint2korr(p); 1753 packet->stmt_id, packet->field_count, packet->param_count);
|
| H A D | mysqlnd_wireprotocol.h | 231 unsigned int param_count; member in struct:st_mysqlnd_packet_prepare_response
|
| H A D | mysqlnd_ps.c | 264 for (;i < stmt->param_count; i++) { 311 stmt->param_count = prepare_resp->param_count; 407 if (stmt_to_prepare->param_count) { 669 if (stmt->param_count) { 677 for (i = 0; i < stmt->param_count; i++) { 1229 for (i = 0; i < stmt->param_count; i++) { 1308 if (param_no >= stmt->param_count) { 1397 DBG_INF_FMT("stmt=%lu param_count=%u", stmt->stmt_id, stmt->param_count); [all...] |
| /PHP_5_3/ext/mysql/ |
| H A D | php_mysql.c | 2139 fci.param_count = 0; 2143 fci.params[fci.param_count++] = (zval**)p->pData; 2157 fci.param_count = 0;
|