cfp               380 ext/phar/phar.c 	if (entry->cfp) {
cfp               381 ext/phar/phar.c 		php_stream_close(entry->cfp);
cfp               382 ext/phar/phar.c 		entry->cfp = 0;
cfp              2693 ext/phar/phar.c 		if (entry->cfp) {
cfp              2695 ext/phar/phar.c 			php_stream_close(entry->cfp);
cfp              2696 ext/phar/phar.c 			entry->cfp = 0;
cfp              2803 ext/phar/phar.c 		entry->cfp = php_stream_fopen_tmpfile();
cfp              2804 ext/phar/phar.c 		if (!entry->cfp) {
cfp              2825 ext/phar/phar.c 		php_stream_filter_append((&entry->cfp->writefilters), filter);
cfp              2826 ext/phar/phar.c 		if (SUCCESS != php_stream_copy_to_stream_ex(file, entry->cfp, entry->uncompressed_filesize, NULL)) {
cfp              2837 ext/phar/phar.c 		php_stream_flush(entry->cfp);
cfp              2839 ext/phar/phar.c 		php_stream_seek(entry->cfp, 0, SEEK_END);
cfp              2840 ext/phar/phar.c 		entry->compressed_filesize = (php_uint32) php_stream_tell(entry->cfp);
cfp              2842 ext/phar/phar.c 		php_stream_rewind(entry->cfp);
cfp              3028 ext/phar/phar.c 		if (entry->cfp) {
cfp              3029 ext/phar/phar.c 			file = entry->cfp;
cfp              3075 ext/phar/phar.c 		if (entry->cfp) {
cfp              3076 ext/phar/phar.c 			php_stream_close(entry->cfp);
cfp              3077 ext/phar/phar.c 			entry->cfp = NULL;
cfp               256 ext/phar/phar_internal.h 	php_stream               *cfp;
cfp              1988 ext/phar/phar_object.c 		entry->cfp = entry->fp;
cfp               914 ext/phar/zip.c 		entry->cfp = php_stream_fopen_tmpfile();
cfp               916 ext/phar/zip.c 		if (!entry->cfp) {
cfp               928 ext/phar/zip.c 		php_stream_filter_append((&entry->cfp->writefilters), filter);
cfp               930 ext/phar/zip.c 		if (SUCCESS != php_stream_copy_to_stream_ex(efp, entry->cfp, entry->uncompressed_filesize, NULL)) {
cfp               936 ext/phar/zip.c 		php_stream_flush(entry->cfp);
cfp               938 ext/phar/zip.c 		php_stream_seek(entry->cfp, 0, SEEK_END);
cfp               939 ext/phar/zip.c 		entry->compressed_filesize = (php_uint32) php_stream_tell(entry->cfp);
cfp               943 ext/phar/zip.c 		php_stream_rewind(entry->cfp);
cfp              1033 ext/phar/zip.c 		if (entry->cfp) {
cfp              1034 ext/phar/zip.c 			if (SUCCESS != php_stream_copy_to_stream_ex(entry->cfp, p->filefp, entry->compressed_filesize, NULL)) {
cfp              1039 ext/phar/zip.c 			php_stream_close(entry->cfp);
cfp              1040 ext/phar/zip.c 			entry->cfp = NULL;