| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zipint.h | 171 /* directory entry: general purpose bit flags */ 203 struct zip_entry *entry; /* entries */ 218 /* zip archive directory entry (central or local) */ 244 struct zip_dirent *entry; /* directory entries */ 267 /* entry in zip archive directory */ 199 struct zip_entry *entry; /* entries */ member in struct:zip 240 struct zip_dirent *entry; /* directory entries */ member in struct:zip_cdir
|
| H A D | zip_dirent.c | 2 zip_dirent.c -- read directory entry (local or central), clean dirent 64 _zip_dirent_finalize(cd->entry+i); 66 free(cd->entry); 76 struct zip_dirent *entry; 83 if ((entry=((struct zip_dirent *) 84 realloc(cd->entry, sizeof(*(cd->entry))*nentry))) == NULL) { 90 cd->entry = entry; 108 if ((cd->entry 73 struct zip_dirent *entry; local [all...] |
| /PHP_TRUNK/win32/ |
| H A D | readdir.c | 91 int readdir_r(DIR *dp, struct dirent *entry, struct dirent **result) argument 112 memcpy(entry, &dp->dent, sizeof(*entry));
|
| /PHP_TRUNK/ext/intl/resourcebundle/ |
| H A D | resourcebundle_class.c | 318 const char * entry; local 344 while ((entry = uenum_next( icuenum, &entry_len, &icuerror ))) { 345 add_next_index_stringl( return_value, (char *) entry, entry_len, 1 ); 407 * Every 'ResourceBundle' class method has an entry in this table
|
| /PHP_TRUNK/ext/mbstring/libmbfl/tests/conv_encoding.tests/ |
| H A D | gen_exp.c | 57 struct mappings_entry *entry; local 61 entry = &map->entries[i]; 62 if (e == i || entry->cp_uni > cp_uni) { 74 entry = &map->entries[i]; 75 entry->cp_uni = cp_uni; 76 entry->n = 0; 80 } else if (entry->cp_uni < cp_uni) { 92 entry = &map->entries[i + 1]; 93 entry->cp_uni = cp_uni; 94 entry 197 to_cp932_visitor(const struct mappings_entry *entry) argument 236 from_cp932_visitor(const struct mappings_entry *entry) argument 270 to_cp50220_visitor(const struct mappings_entry *entry) argument 324 to_cp50222_visitor(const struct mappings_entry *entry) argument [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | st.c | 262 st_table_entry *entry;\ 268 entry = alloc(st_table_entry);\ 270 entry->hash = hash_val;\ 271 entry->key = key;\ 272 entry->record = value;\ 273 entry->next = table->bins[bin_pos];\ 274 table->bins[bin_pos] = entry;\ 344 st_table_entry *ptr, *entry; local 365 entry = alloc(st_table_entry); 366 if (entry [all...] |
| /PHP_TRUNK/ext/dom/ |
| H A D | nodelist.c | 117 zval **entry; local 137 if (zend_hash_index_find(nodeht, index, (void **) &entry)==SUCCESS) { 138 *return_value = **entry;
|
| H A D | xpath.c | 552 zval *array_value, **entry, *new_string; local 562 while (zend_hash_get_current_data(Z_ARRVAL_P(array_value), (void **)&entry) == SUCCESS) { 563 SEPARATE_ZVAL(entry); 564 convert_to_string_ex(entry); 569 zend_hash_update(intern->registered_phpfunctions, Z_STRVAL_PP(entry), Z_STRLEN_PP(entry) + 1, &new_string, sizeof(zval*), NULL);
|
| H A D | dom_iterators.c | 190 zval **entry; local 206 if (zend_hash_get_current_data(nodeht, (void **) &entry)==SUCCESS) { 207 curattr = *entry; 265 zval **entry; local 285 if (zend_hash_get_current_data(nodeht, (void **) &entry)==SUCCESS) { 286 curattr = *entry;
|
| /PHP_TRUNK/ext/ftp/ |
| H A D | ftp.c | 1609 char **entry; local 1672 entry = ret; 1674 *entry = text; 1679 *++entry = text; 1685 *entry = NULL;
|
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_warning.c | 139 zval **entry; local 153 zend_hash_get_current_data(Z_ARRVAL_P(row), (void **)&entry); 154 convert_to_long_ex(entry); 155 errno = Z_LVAL_PP(entry); 159 zend_hash_get_current_data(Z_ARRVAL_P(row), (void **)&entry); 161 w = php_new_warning(*entry, errno TSRMLS_CC); 163 Don't destroy entry, because the row destroy will decrease
|
| /PHP_TRUNK/ext/oci8/ |
| H A D | oci8_statement.c | 896 zval **entry; local 906 if ((i < bind->array.old_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) { 907 zval_dtor(*entry); 908 ZVAL_LONG(*entry, ((ub4 *)(bind->array.elements))[i]); 917 if ((i < bind->array.old_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) { 918 zval_dtor(*entry); 919 ZVAL_DOUBLE(*entry, ((double *)(bind->array.elements))[i]); 933 if ((i < bind->array.old_length) && (zend_hash_get_current_data(hash, (void **) &entry) != FAILURE)) { 935 zval_dtor(*entry); 940 ZVAL_NULL(*entry); 1511 zval **entry; local 1580 zval **entry; local 1618 zval **entry; local 1656 zval **entry; local [all...] |
| /PHP_TRUNK/ext/readline/ |
| H A D | readline.c | 429 zval **entry; local 435 while (zend_hash_get_current_data(myht, (void **)&entry) == SUCCESS) { 438 convert_to_string_ex(entry); 439 if (strncmp (Z_STRVAL_PP(entry), text, strlen(text)) == 0) { 440 return (strdup(Z_STRVAL_PP(entry)));
|
| /PHP_TRUNK/ext/spl/ |
| H A D | php_spl.c | 801 int spl_build_class_list_string(zval **entry, char **list TSRMLS_DC) /* {{{ */ argument 805 spprintf(&res, 0, "%s, %s", *list, Z_STRVAL_PP(entry));
|
| H A D | spl_directory.h | 78 php_stream_dirent entry; member in struct:_spl_filesystem_object::__anon200::__anon201
|
| /PHP_TRUNK/main/ |
| H A D | php_scandir.c | 60 PHPAPI int php_scandir(const char *dirname, struct dirent **namelist[], int (*selector) (const struct dirent *entry), int (*compare) (const struct dirent **a, const struct dirent **b)) argument 66 char entry[sizeof(struct dirent)+MAXPATHLEN]; local 67 struct dirent *dp = (struct dirent *)&entry; 77 while (!php_readdir_r(dirp, (struct dirent *)entry, &dp) && dp) {
|
| H A D | reentrancy.c | 128 PHPAPI int php_readdir_r(DIR *dirp, struct dirent *entry, argument 138 entry->d_name[0] = '\0'; 139 readdir_r(dirp, entry); 141 if (entry->d_name[0] == '\0') { 145 *result = entry; 162 memcpy(entry, ptr, sizeof(*ptr));
|
| /PHP_TRUNK/ext/phar/ |
| H A D | dirstream.c | 197 char *entry, *found, *save, *str_key; local 242 /* the entry has a path separator and is a subdirectory */ 243 entry = (char *) safe_emalloc(found - str_key, 1, 1); 244 memcpy(entry, str_key, found - str_key); 246 entry[keylen] = '\0'; 248 entry = (char *) safe_emalloc(keylen, 1, 1); 249 memcpy(entry, str_key, keylen); 250 entry[keylen] = '\0'; 257 /* entry in directory not found */ 280 entry 331 phar_entry_info *entry = NULL; local 437 phar_entry_info entry, *e; local 569 phar_entry_info *entry; local [all...] |
| H A D | stream.c | 62 char *arch = NULL, *entry = NULL, *error; local 74 if (phar_split_fname(filename, strlen(filename), &arch, &arch_len, &entry, &entry_len, 2, (mode[0] == 'w' ? 2 : 0) TSRMLS_CC) == FAILURE) { 76 if (arch && !entry) { 89 resource->path = entry; 258 phar_entry_info *entry; local 260 entry = (phar_entry_info *) ecalloc(1, sizeof(phar_entry_info)); 261 entry->is_temp_dir = 1; 262 entry->filename = estrndup("", 0); 263 entry->filename_len = 0; 264 entry 320 char *entry = idata->internal_file->filename, *cwd; local 363 phar_entry_info *entry; local 393 phar_entry_info *entry; local 572 phar_entry_info *entry; local 770 phar_entry_info *entry; local [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | dir.c | 399 Read directory entry from dir_handle */ 404 php_stream_dirent entry; local 413 if (php_stream_readdir(dirp, &entry)) { 414 RETURN_STRINGL(entry.d_name, strlen(entry.d_name), 1);
|
| /PHP_TRUNK/ext/session/ |
| H A D | mod_files.c | 207 struct dirent *entry = (struct dirent *) &dentry; local 228 while (php_readdir_r(dir, (struct dirent *) dentry, &entry) == 0 && entry) { 230 if (!strncmp(entry->d_name, FILE_PREFIX, sizeof(FILE_PREFIX) - 1)) { 231 size_t entry_len = strlen(entry->d_name); 236 memcpy(buf + dirname_len + 1, entry->d_name, entry_len);
|
| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcre_get.c | 119 pcre_uchar *entry = nametable + entrysize*mid; local 121 (pcre_uchar *)(entry + IMM2_SIZE)); 122 if (c == 0) return GET2(entry, 0); 141 firstptr where to put the pointer to the first entry 142 lastptr where to put the pointer to the last entry 144 Returns: the length of each entry, or a negative number 203 pcre_uchar *entry = nametable + entrysize*mid; local 205 (pcre_uchar *)(entry + IMM2_SIZE)); 208 pcre_uchar *first = entry; 209 pcre_uchar *last = entry; 272 pcre_uchar *entry; local [all...] |
| /PHP_TRUNK/ext/opcache/ |
| H A D | zend_accelerator_hash.c | 71 * Returns pointer the actual hash entry on success 78 zend_accel_hash_entry *entry; local 92 entry = accel_hash->hash_table[index]; 93 while (entry) { 94 if (entry->hash_value == hash_value 95 && entry->key_length == key_length 96 && !memcmp(entry->key, key, key_length)) { 98 if (entry->indirect) { 100 entry->data = indirect_bucket; 102 ((zend_accel_hash_entry*)entry 147 zend_accel_hash_entry *entry; local 175 zend_accel_hash_entry *entry; local 200 zend_accel_hash_entry *entry, *last_entry=NULL; local [all...] |
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_result.c | 1568 zval **entry; local 1592 zend_hash_get_current_data(Z_ARRVAL(row), (void **)&entry); 1595 zend_hash_get_current_data(Z_ARRVAL(row), (void **)&entry); 1597 *return_value = **entry;
|
| /PHP_TRUNK/ext/sockets/ |
| H A D | sendrecvmsg.c | 91 ancillary_reg_entry entry; local 98 entry.size = sizev; \ 99 entry.var_el_size = var_size; \ 100 entry.calc_space = calc; \ 101 entry.from_array = from; \ 102 entry.to_array = to; \ 106 (void*)&entry, sizeof(entry), NULL) 144 ancillary_reg_entry *entry; local 157 (void**)&entry) 278 ancillary_reg_entry *entry; local [all...] |