tag | line | file | source code |
first_file | 248 | drivers/char/tty_io.c | for (filp = first_file, i=0; i<nr_files; i++, filp = filp->f_next) { |
first_file | 11 | fs/file_table.c | struct file * first_file; |
first_file | 16 | fs/file_table.c | file->f_next = first_file; |
first_file | 17 | fs/file_table.c | file->f_prev = first_file->f_prev; |
first_file | 20 | fs/file_table.c | first_file = file; |
first_file | 25 | fs/file_table.c | if (first_file == file) |
first_file | 26 | fs/file_table.c | first_file = first_file->f_next; |
first_file | 37 | fs/file_table.c | file->f_prev = first_file->f_prev; |
first_file | 39 | fs/file_table.c | file->f_next = first_file; |
first_file | 55 | fs/file_table.c | if (!first_file) |
first_file | 56 | fs/file_table.c | file->f_next = file->f_prev = first_file = file++, i--; |
first_file | 64 | fs/file_table.c | first_file = NULL; |
first_file | 73 | fs/file_table.c | if (!first_file) |
first_file | 76 | fs/file_table.c | for (f = first_file, i=0; i < nr_files; i++, f = f->f_next) |
first_file | 202 | fs/inode.c | for (file = first_file, i=0; i<nr_files; i++, file=file->f_next) { |
first_file | 357 | include/linux/fs.h | extern struct file *first_file; |