Home | History | Annotate | Download | only in auto_resources

Lines Matching refs:f_

38   explicit AutoCloseFILE(FILE *f) : f_(f) { }
40 if (f_) {
41 (void)::fclose(f_);
42 f_ = NULL;
47 return f_;
53 return f_ == NULL;
57 return IsError() || feof(f_);
61 return f_ != NULL;
69 if (f_) {
70 rval = !::fclose(f_);
71 f_ = NULL;
80 FILE* f_;