cfp               385 ext/phar/phar.c 	if (entry->cfp) {
cfp               386 ext/phar/phar.c 		php_stream_close(entry->cfp);
cfp               387 ext/phar/phar.c 		entry->cfp = 0;
cfp              2744 ext/phar/phar.c 		if (entry->cfp) {
cfp              2746 ext/phar/phar.c 			php_stream_close(entry->cfp);
cfp              2747 ext/phar/phar.c 			entry->cfp = 0;
cfp              2856 ext/phar/phar.c 		entry->cfp = php_stream_fopen_tmpfile();
cfp              2857 ext/phar/phar.c 		if (!entry->cfp) {
cfp              2878 ext/phar/phar.c 		php_stream_filter_append((&entry->cfp->writefilters), filter);
cfp              2879 ext/phar/phar.c 		if (SUCCESS != php_stream_copy_to_stream_ex(file, entry->cfp, entry->uncompressed_filesize, NULL)) {
cfp              2890 ext/phar/phar.c 		php_stream_flush(entry->cfp);
cfp              2892 ext/phar/phar.c 		php_stream_seek(entry->cfp, 0, SEEK_END);
cfp              2893 ext/phar/phar.c 		entry->compressed_filesize = (php_uint32) php_stream_tell(entry->cfp);
cfp              2895 ext/phar/phar.c 		php_stream_rewind(entry->cfp);
cfp              3080 ext/phar/phar.c 		if (entry->cfp) {
cfp              3081 ext/phar/phar.c 			file = entry->cfp;
cfp              3127 ext/phar/phar.c 		if (entry->cfp) {
cfp              3128 ext/phar/phar.c 			php_stream_close(entry->cfp);
cfp              3129 ext/phar/phar.c 			entry->cfp = NULL;
cfp               260 ext/phar/phar_internal.h 	php_stream               *cfp;
cfp              2011 ext/phar/phar_object.c 		entry->cfp = entry->fp;
cfp               894 ext/phar/zip.c 		entry->cfp = php_stream_fopen_tmpfile();
cfp               896 ext/phar/zip.c 		if (!entry->cfp) {
cfp               908 ext/phar/zip.c 		php_stream_filter_append((&entry->cfp->writefilters), filter);
cfp               910 ext/phar/zip.c 		if (SUCCESS != php_stream_copy_to_stream_ex(efp, entry->cfp, entry->uncompressed_filesize, NULL)) {
cfp               916 ext/phar/zip.c 		php_stream_flush(entry->cfp);
cfp               918 ext/phar/zip.c 		php_stream_seek(entry->cfp, 0, SEEK_END);
cfp               919 ext/phar/zip.c 		entry->compressed_filesize = (php_uint32) php_stream_tell(entry->cfp);
cfp               923 ext/phar/zip.c 		php_stream_rewind(entry->cfp);
cfp              1014 ext/phar/zip.c 		if (entry->cfp) {
cfp              1015 ext/phar/zip.c 			if (SUCCESS != php_stream_copy_to_stream_ex(entry->cfp, p->filefp, entry->compressed_filesize, NULL)) {
cfp              1020 ext/phar/zip.c 			php_stream_close(entry->cfp);
cfp              1021 ext/phar/zip.c 			entry->cfp = NULL;