centralfp         781 ext/phar/zip.c 	php_stream *centralfp;
centralfp         985 ext/phar/zip.c 	if (sizeof(central) != php_stream_write(p->centralfp, (char *)&central, sizeof(central))) {
centralfp        1001 ext/phar/zip.c 		if (entry->filename_len != php_stream_write(p->centralfp, entry->filename, entry->filename_len)) {
centralfp        1006 ext/phar/zip.c 		if (1 != php_stream_write(p->centralfp, "/", 1)) {
centralfp        1016 ext/phar/zip.c 		if (entry->filename_len != php_stream_write(p->centralfp, entry->filename, entry->filename_len)) {
centralfp        1027 ext/phar/zip.c 	if (sizeof(perms) != php_stream_write(p->centralfp, (char *)&perms, sizeof(perms))) {
centralfp        1085 ext/phar/zip.c 		if (ZSTR_LEN(entry->metadata_str.s) != php_stream_write(p->centralfp, ZSTR_VAL(entry->metadata_str.s), ZSTR_LEN(entry->metadata_str.s))) {
centralfp        1124 ext/phar/zip.c 		tell = php_stream_tell(pass->centralfp);
centralfp        1125 ext/phar/zip.c 		php_stream_seek(pass->centralfp, 0, SEEK_SET);
centralfp        1126 ext/phar/zip.c 		php_stream_copy_to_stream_ex(pass->centralfp, newfile, tell, NULL);
centralfp        1416 ext/phar/zip.c 	pass.centralfp = php_stream_fopen_tmpfile();
centralfp        1418 ext/phar/zip.c 	if (!pass.centralfp) {
centralfp        1450 ext/phar/zip.c 		php_stream_close(pass.centralfp);
centralfp        1467 ext/phar/zip.c 	cdir_size = php_stream_tell(pass.centralfp);
centralfp        1471 ext/phar/zip.c 	php_stream_seek(pass.centralfp, 0, SEEK_SET);
centralfp        1475 ext/phar/zip.c 		int ret = php_stream_copy_to_stream_ex(pass.centralfp, pass.filefp, PHP_STREAM_COPY_ALL, &clen);
centralfp        1484 ext/phar/zip.c 	php_stream_close(pass.centralfp);