Lines Matching refs:cfp
382 if (entry->cfp) { in destroy_phar_manifest_entry_int()
383 php_stream_close(entry->cfp); in destroy_phar_manifest_entry_int()
384 entry->cfp = 0; in destroy_phar_manifest_entry_int()
2690 if (entry->cfp) {
2692 php_stream_close(entry->cfp);
2693 entry->cfp = 0;
2800 entry->cfp = php_stream_fopen_tmpfile();
2801 if (!entry->cfp) {
2822 php_stream_filter_append((&entry->cfp->writefilters), filter);
2823 …if (SUCCESS != php_stream_copy_to_stream_ex(file, entry->cfp, entry->uncompressed_filesize, NULL))…
2834 php_stream_flush(entry->cfp);
2836 php_stream_seek(entry->cfp, 0, SEEK_END);
2837 entry->compressed_filesize = (uint32_t) php_stream_tell(entry->cfp);
2839 php_stream_rewind(entry->cfp);
3025 if (entry->cfp) {
3026 file = entry->cfp;
3072 if (entry->cfp) {
3073 php_stream_close(entry->cfp);
3074 entry->cfp = NULL;