Lines Matching refs:fl_head
154 static file_spec_t *fl_head; variable
169 if (!fl_head) { in matchpathcon_filespec_add()
170 fl_head = malloc(sizeof(file_spec_t) * HASH_BUCKETS); in matchpathcon_filespec_add()
171 if (!fl_head) in matchpathcon_filespec_add()
173 memset(fl_head, 0, sizeof(file_spec_t) * HASH_BUCKETS); in matchpathcon_filespec_add()
177 for (prevfl = &fl_head[h], fl = fl_head[h].next; fl; in matchpathcon_filespec_add()
240 if (!fl_head) in matchpathcon_filespec_eval()
248 for (fl = fl_head[h].next; fl; fl = fl->next) { in matchpathcon_filespec_eval()
273 if (!fl_head) in matchpathcon_filespec_destroy()
277 fl = fl_head[h].next; in matchpathcon_filespec_destroy()
284 fl_head[h].next = NULL; in matchpathcon_filespec_destroy()
286 free(fl_head); in matchpathcon_filespec_destroy()
287 fl_head = NULL; in matchpathcon_filespec_destroy()