tag | line | file | source code |
first_file | 161 | drivers/char/tty_io.c | for (f = first_file, i=0; i<nr_files; i++, f = f->f_next) { |
first_file | 352 | drivers/char/tty_io.c | for (filp = first_file, i=0; i<nr_files; i++, filp = filp->f_next) { |
first_file | 16 | fs/file_table.c | struct file * first_file = NULL; |
first_file | 25 | fs/file_table.c | file->f_next = first_file; |
first_file | 26 | fs/file_table.c | file->f_prev = first_file->f_prev; |
first_file | 29 | fs/file_table.c | first_file = file; |
first_file | 37 | fs/file_table.c | if (first_file == file) |
first_file | 38 | fs/file_table.c | first_file = first_file->f_next; |
first_file | 49 | fs/file_table.c | file->f_prev = first_file->f_prev; |
first_file | 51 | fs/file_table.c | file->f_next = first_file; |
first_file | 78 | fs/file_table.c | if (!first_file) |
first_file | 80 | fs/file_table.c | file->f_next = file->f_prev = first_file = file++, |
first_file | 105 | fs/file_table.c | if (!first_file && !grow_files()) |
first_file | 109 | 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 | 427 | include/linux/fs.h | extern struct file *first_file; |