Home | History | Annotate | Download | only in btt

Lines Matching refs:fip

54 		struct file_info *fip = list_entry(p, struct file_info, head);
56 fclose(fip->ofp);
57 if (!stat(fip->oname, &buf) && (buf.st_size == 0))
58 unlink(fip->oname);
60 list_del(&fip->head);
61 free(fip->oname);
62 free(fip);
114 struct file_info *fip = malloc(sizeof(*fip));
116 fip->ofp = fp;
117 fip->oname = oname;
118 list_add_tail(&fip->head, &files_to_clean);