Lines Matching full:irfile
259 FILE* irfile;
279 irfile = fopen(syms_name, "r");
280 if (irfile != NULL)
289 irfile = fdopen(file->fd, "r");
290 (void)fseek(irfile, file->offset, SEEK_SET);
295 len = fread(buf, 1, 13, irfile);
300 (void) fgets(buf, sizeof(buf), irfile);
301 (void) fgets(buf, sizeof(buf), irfile);
315 while (ftell(irfile) < end_offset
316 && fgets(buf, sizeof(buf), irfile) != NULL)
402 fclose(irfile);
413 FILE* irfile;
509 irfile = fopen(syms_name, "r");
510 if (irfile != NULL)
518 irfile = fdopen(file.fd, "r");
519 (void)fseek(irfile, file.offset, SEEK_SET);
524 len = fread(buf, 1, 13, irfile);
533 (void) fgets(buf, sizeof(buf), irfile);
534 (void) fgets(buf, sizeof(buf), irfile);
537 while (ftell(irfile) < end_offset
538 && fgets(buf, sizeof(buf), irfile) != NULL)
554 fclose(irfile);