Home | History | Annotate | Download | only in src

Lines Matching defs:output_file_

125   // If successful, output_file_ will be valid.
133 &output_file_,
143 // Writes the contents of output to output_file_. If successful, returns
147 // Reads a number of bytes from output_file_ equal to the size of output,
170 // When encoding, input_file_ is the target file and output_file_ is the delta
174 FILE* output_file_;
197 output_file_(NULL) { }
204 if (output_file_ && (output_file_ != stdout)) {
205 fclose(output_file_);
206 output_file_ = NULL;
299 output_file_ = stdout;
301 output_file_ = fopen(output_file_name_.c_str(), "wb");
302 if (!output_file_) {
328 fwrite(output.data(), 1, output.size(), output_file_);
329 if (ferror(output_file_)) {
350 output_file_);
351 if (ferror(output_file_)) {
563 if (fgetc(output_file_) != EOF) {
568 if (ferror(output_file_)) {