Lines Matching defs:File
4 // This code implements LZMA file decoding according to LZMA specification.
32 FILE *File;
39 int c = getc(File);
41 throw "Unexpected end of file";
50 FILE *File;
57 if (putc(b, File) == EOF)
58 throw "File writing error";
618 inStream.File = fopen(args[1], "rb");
620 if (inStream.File == 0)
621 throw "Can't open input file";
624 lzmaDecoder.OutWindow.OutStream.File = fopen(args[2], "wb+");
626 if (inStream.File == 0)
627 throw "Can't open output file";