Lines Matching refs:fl
440 file_spec_t *prevfl, *fl;
454 for (prevfl = &fl_head[h], fl = fl_head[h].next; fl;
455 prevfl = fl, fl = fl->next) {
456 if (ino == fl->ino) {
457 ret = lstat64(fl->file, &sb);
459 freecon(fl->con);
460 free(fl->file);
461 fl->file = strdup(file);
462 if (!fl->file)
464 fl->con = strdup(con);
465 if (!fl->con)
470 if (strcmp(fl->con, con) == 0)
475 file, fl->file, fl->con);
476 free(fl->file);
477 fl->file = strdup(file);
478 if (!fl->file)
491 if (ino > fl->ino)
495 fl = malloc(sizeof(file_spec_t));
496 if (!fl)
498 fl->ino = ino;
499 fl->con = strdup(con);
500 if (!fl->con)
502 fl->file = strdup(file);
503 if (!fl->file)
505 fl->next = prevfl->next;
506 prevfl->next = fl;
512 free(fl->con);
514 free(fl);
530 file_spec_t *fl;
542 for (fl = fl_head[h].next; fl; fl = fl->next)
566 file_spec_t *fl, *tmp;
573 fl = fl_head[h].next;
574 while (fl) {
575 tmp = fl;
576 fl = fl->next;