• Home
  • Raw
  • Download

Lines Matching full:fl

200 	file_spec_t *prevfl, *fl;  in matchpathcon_filespec_add()  local
212 for (prevfl = &fl_head[h], fl = fl_head[h].next; fl; in matchpathcon_filespec_add()
213 prevfl = fl, fl = fl->next) { in matchpathcon_filespec_add()
214 if (ino == fl->ino) { in matchpathcon_filespec_add()
215 ret = lstat(fl->file, &sb); in matchpathcon_filespec_add()
217 fl->specind = specind; in matchpathcon_filespec_add()
218 free(fl->file); in matchpathcon_filespec_add()
219 fl->file = strdup(file); in matchpathcon_filespec_add()
220 if (!fl->file) in matchpathcon_filespec_add()
222 return fl->specind; in matchpathcon_filespec_add()
226 if (!strcmp(con_array[fl->specind], in matchpathcon_filespec_add()
228 return fl->specind; in matchpathcon_filespec_add()
232 __FUNCTION__, file, fl->file, in matchpathcon_filespec_add()
233 con_array[fl->specind]); in matchpathcon_filespec_add()
234 free(fl->file); in matchpathcon_filespec_add()
235 fl->file = strdup(file); in matchpathcon_filespec_add()
236 if (!fl->file) in matchpathcon_filespec_add()
238 return fl->specind; in matchpathcon_filespec_add()
241 if (ino > fl->ino) in matchpathcon_filespec_add()
245 fl = malloc(sizeof(file_spec_t)); in matchpathcon_filespec_add()
246 if (!fl) in matchpathcon_filespec_add()
248 fl->ino = ino; in matchpathcon_filespec_add()
249 fl->specind = specind; in matchpathcon_filespec_add()
250 fl->file = strdup(file); in matchpathcon_filespec_add()
251 if (!fl->file) in matchpathcon_filespec_add()
253 fl->next = prevfl->next; in matchpathcon_filespec_add()
254 prevfl->next = fl; in matchpathcon_filespec_add()
255 return fl->specind; in matchpathcon_filespec_add()
257 free(fl); in matchpathcon_filespec_add()
269 file_spec_t *fl; in matchpathcon_filespec_eval() local
280 for (fl = fl_head[h].next; fl; fl = fl->next) { in matchpathcon_filespec_eval()
300 file_spec_t *fl, *tmp; in matchpathcon_filespec_destroy() local
309 fl = fl_head[h].next; in matchpathcon_filespec_destroy()
310 while (fl) { in matchpathcon_filespec_destroy()
311 tmp = fl; in matchpathcon_filespec_destroy()
312 fl = fl->next; in matchpathcon_filespec_destroy()