Searched refs:zip_entry (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_3/ext/zip/examples/ |
| H A D | oldapi.php | 8 while ($zip_entry = zip_read($zip)) { 9 var_dump($zip_entry); 10 $txt = zip_entry_read($zip_entry, 10); 11 echo $i . ": " . $txt . "size: " . zip_entry_filesize($zip_entry) . 12 "comp_method: " . zip_entry_compressionmethod($zip_entry) . 16 var_dump($zip_entry);
|
| /PHP_5_3/ext/zip/lib/ |
| H A D | zip_entry_free.c | 2 zip_entry_free.c -- free struct zip_entry 45 _zip_entry_free(struct zip_entry *ze)
|
| H A D | zip_entry_new.c | 2 zip_entry_new.c -- create and init struct zip_entry 44 struct zip_entry * 47 struct zip_entry *ze; 49 ze = (struct zip_entry *)malloc(sizeof(struct zip_entry)); 56 struct zip_entry *rentries; 58 rentries = (struct zip_entry *)realloc(za->entry, 59 sizeof(struct zip_entry)
|
| H A D | zip_open.c | 131 if ((za->entry=(struct zip_entry *)malloc(sizeof(*(za->entry))
|
| H A D | zip_unchange_data.c | 44 _zip_unchange_data(struct zip_entry *ze)
|
| H A D | zipint.h | 203 struct zip_entry *entry; /* entries */ 269 struct zip_entry { 311 void _zip_entry_free(struct zip_entry *); 313 struct zip_entry *_zip_entry_new(struct zip *); 350 void _zip_unchange_data(struct zip_entry *); 264 struct zip_entry { struct
|
| /PHP_5_3/ext/zip/ |
| H A D | php_zip.c | 750 ZEND_ARG_INFO(0, zip_entry) 759 ZEND_ARG_INFO(0, zip_entry) 764 ZEND_ARG_INFO(0, zip_entry) 768 ZEND_ARG_INFO(0, zip_entry) 772 ZEND_ARG_INFO(0, zip_entry) 776 ZEND_ARG_INFO(0, zip_entry) 1310 /* {{{ proto bool zip_entry_open(resource zip_dp, resource zip_entry [, string mode]) 1316 zval * zip_entry; local 1322 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rr|s", &zip, &zip_entry, &mode, &mode_len) == FAILURE) { 1326 ZEND_FETCH_RESOURCE(zr_rsrc, zip_read_rsrc *, &zip_entry, 1341 zval * zip_entry; local 1358 zval * zip_entry; local 1392 zval * zip_entry; local [all...] |
Completed in 20 milliseconds