Lines Matching refs:cfp
387 if (entry->cfp) { in destroy_phar_manifest_entry()
388 php_stream_close(entry->cfp); in destroy_phar_manifest_entry()
389 entry->cfp = 0; in destroy_phar_manifest_entry()
2764 if (entry->cfp) {
2766 php_stream_close(entry->cfp);
2767 entry->cfp = 0;
2876 entry->cfp = php_stream_fopen_tmpfile();
2877 if (!entry->cfp) {
2898 php_stream_filter_append((&entry->cfp->writefilters), filter);
2899 if (SUCCESS != phar_stream_copy_to_stream(file, entry->cfp, entry->uncompressed_filesize, NULL)) {
2910 php_stream_flush(entry->cfp);
2912 php_stream_seek(entry->cfp, 0, SEEK_END);
2913 entry->compressed_filesize = (php_uint32) php_stream_tell(entry->cfp);
2915 php_stream_rewind(entry->cfp);
3078 if (entry->cfp) {
3079 file = entry->cfp;
3125 if (entry->cfp) {
3126 php_stream_close(entry->cfp);
3127 entry->cfp = NULL;