Lines Matching refs:ofl_free
9 static FILE *ofl_free = NULL;
41 if (!FILE_LIST_EMPTY(ofl_free)) {
42 f = FILE_LIST_HEAD(ofl_free);
43 FILE_LIST_REMOVE(ofl_free);
49 if (ofl_free) {
50 f = ofl_free;
51 ofl_free = ofl_free->next;
74 FILE_LIST_INSERT_HEAD(ofl_free, &fsb[cnt]);
78 f = FILE_LIST_HEAD(ofl_free);
79 FILE_LIST_REMOVE(ofl_free);
81 ofl_free = (FILE*)fsb;
82 ofl_free->prev = NULL;
83 f = ofl_free;
94 f = ofl_free;
95 ofl_free = ofl_free->next;
96 if (ofl_free) {
97 ofl_free->prev = NULL;
122 FILE_LIST_INSERT_HEAD(ofl_free, f);
136 f->next = ofl_free;
137 if (ofl_free) {
138 ofl_free->prev = f;
140 ofl_free = f;