filefp            780 ext/phar/zip.c 	php_stream *filefp;
filefp            847 ext/phar/zip.c 	PHAR_SET_32(central.offset, php_stream_tell(p->filefp));
filefp            977 ext/phar/zip.c 	entry->header_offset = php_stream_tell(p->filefp);
filefp            980 ext/phar/zip.c 	if (sizeof(local) != php_stream_write(p->filefp, (char *)&local, sizeof(local))) {
filefp            991 ext/phar/zip.c 		if (entry->filename_len != php_stream_write(p->filefp, entry->filename, entry->filename_len)) {
filefp            996 ext/phar/zip.c 		if (1 != php_stream_write(p->filefp, "/", 1)) {
filefp           1011 ext/phar/zip.c 		if (entry->filename_len != php_stream_write(p->filefp, entry->filename, entry->filename_len)) {
filefp           1022 ext/phar/zip.c 	if (sizeof(perms) != php_stream_write(p->filefp, (char *)&perms, sizeof(perms))) {
filefp           1034 ext/phar/zip.c 			if (SUCCESS != php_stream_copy_to_stream_ex(entry->cfp, p->filefp, entry->compressed_filesize, NULL)) {
filefp           1048 ext/phar/zip.c 			if (SUCCESS != php_stream_copy_to_stream_ex(phar_get_efp(entry, 0), p->filefp, entry->uncompressed_filesize, NULL)) {
filefp           1074 ext/phar/zip.c 		if (!entry->is_dir && entry->compressed_filesize && SUCCESS != php_stream_copy_to_stream_ex(p->old, p->filefp, entry->compressed_filesize, NULL)) {
filefp           1120 ext/phar/zip.c 		st = tell = php_stream_tell(pass->filefp);
filefp           1122 ext/phar/zip.c 		php_stream_seek(pass->filefp, 0, SEEK_SET);
filefp           1123 ext/phar/zip.c 		php_stream_copy_to_stream_ex(pass->filefp, newfile, tell, NULL);
filefp           1403 ext/phar/zip.c 	pass.filefp = php_stream_fopen_tmpfile();
filefp           1405 ext/phar/zip.c 	if (!pass.filefp) {
filefp           1455 ext/phar/zip.c 		php_stream_close(pass.filefp);
filefp           1468 ext/phar/zip.c 	cdir_offset = php_stream_tell(pass.filefp);
filefp           1475 ext/phar/zip.c 		int ret = php_stream_copy_to_stream_ex(pass.centralfp, pass.filefp, PHP_STREAM_COPY_ALL, &clen);
filefp           1490 ext/phar/zip.c 		if (sizeof(eocd) != php_stream_write(pass.filefp, (char *)&eocd, sizeof(eocd))) {
filefp           1497 ext/phar/zip.c 		if (ZSTR_LEN(main_metadata_str.s) != php_stream_write(pass.filefp, ZSTR_VAL(main_metadata_str.s), ZSTR_LEN(main_metadata_str.s))) {
filefp           1507 ext/phar/zip.c 		if (sizeof(eocd) != php_stream_write(pass.filefp, (char *)&eocd, sizeof(eocd))) {
filefp           1531 ext/phar/zip.c 		phar->fp = pass.filefp;
filefp           1538 ext/phar/zip.c 			phar->fp = pass.filefp;
filefp           1544 ext/phar/zip.c 		php_stream_rewind(pass.filefp);
filefp           1545 ext/phar/zip.c 		php_stream_copy_to_stream_ex(pass.filefp, phar->fp, PHP_STREAM_COPY_ALL, NULL);
filefp           1547 ext/phar/zip.c 		php_stream_close(pass.filefp);