taglinefilesource code
f15fs/file_table.cstruct file * f = file_table+0;
f17fs/file_table.cfor (i = 0; i++ < NR_FILE; f++)
f18fs/file_table.cif (!f->f_count) {
f19fs/file_table.cmemset(f,0,sizeof(*f));
f20fs/file_table.cf->f_count = 1;
f21fs/file_table.creturn f;
f346fs/open.cstruct file * f;
f355fs/open.cf = get_empty_filp();
f356fs/open.cif (!f)
f358fs/open.ccurrent->filp[fd] = f;
f359fs/open.cf->f_flags = flag;
f360fs/open.cif (f->f_mode = (flag+1) & O_ACCMODE)
f367fs/open.cf->f_count--;
f377fs/open.cf->f_count--;
f385fs/open.cf->f_inode = inode;
f386fs/open.cf->f_pos = 0;
f387fs/open.cf->f_reada = 0;
f388fs/open.cf->f_op = NULL;
f390fs/open.cf->f_op = inode->i_op->default_file_ops;
f391fs/open.cif (f->f_op && f->f_op->open)
f392fs/open.cif (i = f->f_op->open(inode,f)) {
f394fs/open.cf->f_count--;
f398fs/open.cf->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
f208fs/pipe.cstruct file * f[2];
f214fs/pipe.cif (!(f[j] = get_empty_filp()))
f217fs/pipe.cf[0]->f_count--;
f223fs/pipe.ccurrent->filp[ fd[j]=i ] = f[j];
f229fs/pipe.cf[0]->f_count--;
f230fs/pipe.cf[1]->f_count--;
f236fs/pipe.cf[0]->f_count--;
f237fs/pipe.cf[1]->f_count--;
f240fs/pipe.cf[0]->f_inode = f[1]->f_inode = inode;
f241fs/pipe.cf[0]->f_pos = f[1]->f_pos = 0;
f242fs/pipe.cf[0]->f_flags = f[1]->f_flags = 0;
f243fs/pipe.cf[0]->f_op = &read_pipe_fops;
f244fs/pipe.cf[0]->f_mode = 1;    /* read */
f245fs/pipe.cf[1]->f_op = &write_pipe_fops;
f246fs/pipe.cf[1]->f_mode = 2;    /* write */
f133fs/stat.cstruct file * f;
f136fs/stat.cif (fd >= NR_OPEN || !(f=current->filp[fd]) || !(inode=f->f_inode))
f144fs/stat.cstruct file * f;
f147fs/stat.cif (fd >= NR_OPEN || !(f=current->filp[fd]) || !(inode=f->f_inode))
f133include/linux/tty.h#define _L_FLAG(tty,f)  ((tty)->termios->c_lflag & f)
f134include/linux/tty.h#define _I_FLAG(tty,f)  ((tty)->termios->c_iflag & f)
f135include/linux/tty.h#define _O_FLAG(tty,f)  ((tty)->termios->c_oflag & f)
f110kernel/FPU-emu/reg_compare.cint f;
f116kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f122kernel/FPU-emu/reg_compare.cf = SW_C0;
f125kernel/FPU-emu/reg_compare.cf = SW_C3;
f128kernel/FPU-emu/reg_compare.cf = 0;
f131kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f136kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f140kernel/FPU-emu/reg_compare.csetcc(f);
f147kernel/FPU-emu/reg_compare.cint f;
f151kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f157kernel/FPU-emu/reg_compare.cf = SW_C0;
f160kernel/FPU-emu/reg_compare.cf = SW_C3;
f163kernel/FPU-emu/reg_compare.cf = 0;
f166kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f171kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f175kernel/FPU-emu/reg_compare.csetcc(f);
f181kernel/FPU-emu/reg_compare.cint f;
f188kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f194kernel/FPU-emu/reg_compare.cf = SW_C0;
f197kernel/FPU-emu/reg_compare.cf = SW_C3;
f200kernel/FPU-emu/reg_compare.cf = 0;
f203kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f208kernel/FPU-emu/reg_compare.cf = SW_C3 | SW_C2 | SW_C0;
f212kernel/FPU-emu/reg_compare.csetcc(f);
f110kernel/fork.cstruct file *f;
f175kernel/fork.cif (f=p->filp[i])
f176kernel/fork.cf->f_count++;