Home | History | Annotate | Download | only in qtools

Lines Matching refs:static_fstream_

618     static_fstream_ = NULL;
769 static_fstream_ = fstream;
790 fseek(static_fstream_, sizeof(TraceHeader), SEEK_SET);
1043 fclose(static_fstream_);
1044 static_fstream_ = NULL;
1051 freopen(static_filename_, "r+", static_fstream_);
1052 fseek(static_fstream_, 0, SEEK_SET);
1067 fwrite(&swappedHeader, sizeof(TraceHeader), 1, static_fstream_);
1074 int rval = fread(rec, sizeof(StaticRec), 1, static_fstream_);
1076 if (feof(static_fstream_)) {
1096 int rval = fread(insns, sizeof(uint32_t), num, static_fstream_);
1103 if (feof(static_fstream_)) {
1118 freopen(static_filename_, "r+", static_fstream_);
1119 fseek(static_fstream_, sizeof(TraceHeader), SEEK_SET);
1124 loc = ftell(static_fstream_);
1128 int rval = fread(&static_rec, sizeof(StaticRec), 1, static_fstream_);
1134 fseek(static_fstream_, prev_loc, SEEK_SET);
1139 fwrite(&static_rec, sizeof(StaticRec), 1, static_fstream_);
1140 int fd = fileno(static_fstream_);
1141 long len = ftell(static_fstream_);