Lines Matching refs:fl_head
182 static file_spec_t *fl_head; variable
197 if (!fl_head) { in matchpathcon_filespec_add()
198 fl_head = malloc(sizeof(file_spec_t) * HASH_BUCKETS); in matchpathcon_filespec_add()
199 if (!fl_head) in matchpathcon_filespec_add()
201 memset(fl_head, 0, sizeof(file_spec_t) * HASH_BUCKETS); in matchpathcon_filespec_add()
205 for (prevfl = &fl_head[h], fl = fl_head[h].next; fl; in matchpathcon_filespec_add()
268 if (!fl_head) in matchpathcon_filespec_eval()
276 for (fl = fl_head[h].next; fl; fl = fl->next) { in matchpathcon_filespec_eval()
301 if (!fl_head) in matchpathcon_filespec_destroy()
305 fl = fl_head[h].next; in matchpathcon_filespec_destroy()
312 fl_head[h].next = NULL; in matchpathcon_filespec_destroy()
314 free(fl_head); in matchpathcon_filespec_destroy()
315 fl_head = NULL; in matchpathcon_filespec_destroy()