Lines Matching refs:fout
81 FILE *fout; member
149 ctx->fout = NULL; in _zip_source_file_or_p()
214 ctx->fout = tfp; in create_temp_output()
243 if (fclose(ctx->fout) < 0) { in read_file()
244 ctx->fout = NULL; in read_file()
247 ctx->fout = NULL; in read_file()
327 if (ctx->fout) { in read_file()
328 fclose(ctx->fout); in read_file()
329 ctx->fout = NULL; in read_file()
398 if (_zip_fseek(ctx->fout, args->offset, args->whence, &ctx->error) < 0) { in read_file()
450 off_t ret = ftello(ctx->fout); in read_file()
463 clearerr(ctx->fout); in read_file()
464 ret = fwrite(data, 1, len, ctx->fout); in read_file()
465 if (ret != len || ferror(ctx->fout)) { in read_file()