Lines Matching refs:fl_head
188 static file_spec_t *fl_head; variable
203 if (!fl_head) { in matchpathcon_filespec_add()
204 fl_head = malloc(sizeof(file_spec_t) * HASH_BUCKETS); in matchpathcon_filespec_add()
205 if (!fl_head) in matchpathcon_filespec_add()
207 memset(fl_head, 0, sizeof(file_spec_t) * HASH_BUCKETS); in matchpathcon_filespec_add()
211 for (prevfl = &fl_head[h], fl = fl_head[h].next; fl; in matchpathcon_filespec_add()
274 if (!fl_head) in matchpathcon_filespec_eval()
282 for (fl = fl_head[h].next; fl; fl = fl->next) { in matchpathcon_filespec_eval()
307 if (!fl_head) in matchpathcon_filespec_destroy()
311 fl = fl_head[h].next; in matchpathcon_filespec_destroy()
318 fl_head[h].next = NULL; in matchpathcon_filespec_destroy()
320 free(fl_head); in matchpathcon_filespec_destroy()
321 fl_head = NULL; in matchpathcon_filespec_destroy()