centralfp         759 ext/phar/zip.c 	php_stream *centralfp;
centralfp         966 ext/phar/zip.c 	if (sizeof(central) != php_stream_write(p->centralfp, (char *)&central, sizeof(central))) {
centralfp         982 ext/phar/zip.c 		if (entry->filename_len != php_stream_write(p->centralfp, entry->filename, entry->filename_len)) {
centralfp         987 ext/phar/zip.c 		if (1 != php_stream_write(p->centralfp, "/", 1)) {
centralfp         997 ext/phar/zip.c 		if (entry->filename_len != php_stream_write(p->centralfp, entry->filename, entry->filename_len)) {
centralfp        1008 ext/phar/zip.c 	if (sizeof(perms) != php_stream_write(p->centralfp, (char *)&perms, sizeof(perms))) {
centralfp        1066 ext/phar/zip.c 		if (entry->metadata_str.len != php_stream_write(p->centralfp, entry->metadata_str.c, entry->metadata_str.len)) {
centralfp        1099 ext/phar/zip.c 		tell = php_stream_tell(pass->centralfp);
centralfp        1100 ext/phar/zip.c 		php_stream_seek(pass->centralfp, 0, SEEK_SET);
centralfp        1101 ext/phar/zip.c 		php_stream_copy_to_stream_ex(pass->centralfp, newfile, tell, NULL);
centralfp        1377 ext/phar/zip.c 	pass.centralfp = php_stream_fopen_tmpfile();
centralfp        1379 ext/phar/zip.c 	if (!pass.centralfp) {
centralfp        1411 ext/phar/zip.c 		php_stream_close(pass.centralfp);
centralfp        1428 ext/phar/zip.c 	cdir_size = php_stream_tell(pass.centralfp);
centralfp        1432 ext/phar/zip.c 	php_stream_seek(pass.centralfp, 0, SEEK_SET);
centralfp        1436 ext/phar/zip.c 		int ret = php_stream_copy_to_stream_ex(pass.centralfp, pass.filefp, PHP_STREAM_COPY_ALL, &clen);
centralfp        1445 ext/phar/zip.c 	php_stream_close(pass.centralfp);