taglinefilesource code
mode306fs/ext/namei.cint ext_create(struct inode * dir,const char * name, int len, int mode,
mode322fs/ext/namei.cinode->i_mode = mode;
mode340fs/ext/namei.cint ext_mknod(struct inode * dir, const char * name, int len, int mode, int rdev)
mode360fs/ext/namei.cinode->i_mode = mode;
mode383fs/ext/namei.cif (S_ISBLK(mode) || S_ISCHR(mode))
mode403fs/ext/namei.cint ext_mkdir(struct inode * dir, const char * name, int len, int mode)
mode448fs/ext/namei.cinode->i_mode = S_IFDIR | (mode & 0777 & ~current->umask);
mode48fs/ext/symlink.cint flag, int mode, struct inode ** res_inode)
mode82fs/ext/symlink.cerror = open_namei(bh->b_data,flag,mode,res_inode,dir);
mode73fs/isofs/file.cstatic inline void unixify_text_buffer(char * buffer, int chars, int mode)
mode78fs/isofs/file.cif(mode == ISOFS_FILE_TEXT_M) *buffer = 0x0a;
mode79fs/isofs/file.cif(mode == ISOFS_FILE_TEXT) *buffer = ' ';
mode274fs/isofs/rock.cinode->i_mode  = isonum_733(rr->u.PX.mode);
mode30fs/isofs/rock.hchar mode[8];
mode45fs/isofs/symlink.cint flag, int mode, struct inode ** res_inode)
mode76fs/isofs/symlink.cerror = open_namei(pnt,flag,mode,res_inode,dir);
mode198fs/minix/namei.cint minix_create(struct inode * dir,const char * name, int len, int mode,
mode214fs/minix/namei.cinode->i_mode = mode;
mode232fs/minix/namei.cint minix_mknod(struct inode * dir, const char * name, int len, int mode, int rdev)
mode252fs/minix/namei.cinode->i_mode = mode;
mode275fs/minix/namei.cif (S_ISBLK(mode) || S_ISCHR(mode))
mode295fs/minix/namei.cint minix_mkdir(struct inode * dir, const char * name, int len, int mode)
mode336fs/minix/namei.cinode->i_mode = S_IFDIR | (mode & 0777 & ~current->umask);
mode42fs/minix/symlink.cint flag, int mode, struct inode ** res_inode)
mode76fs/minix/symlink.cerror = open_namei(bh->b_data,flag,mode,res_inode,dir);
mode194fs/msdos/namei.cint msdos_create(struct inode *dir,const char *name,int len,int mode,
mode215fs/msdos/namei.cres = msdos_create_entry(dir,msdos_name,S_ISDIR(mode),result);
mode242fs/msdos/namei.cint msdos_mkdir(struct inode *dir,const char *name,int len,int mode)
mode37fs/namei.cint mode = inode->i_mode;
mode45fs/namei.cmode >>= 6;
mode47fs/namei.cmode >>= 3;
mode48fs/namei.cif (((mode & mask & 0007) == mask) || suser())
mode93fs/namei.cint flag, int mode, struct inode ** res_inode)
mode106fs/namei.creturn inode->i_op->follow_link(dir,inode,flag,mode,res_inode);
mode217fs/namei.cint open_namei(const char * pathname, int flag, int mode,
mode225fs/namei.cmode &= 07777 & ~current->umask;
mode226fs/namei.cmode |= S_IFREG;
mode262fs/namei.creturn dir->i_op->create(dir,basename,namelen,mode,res_inode);
mode269fs/namei.cerror = follow_link(dir,inode,flag,mode,&inode);
mode309fs/namei.cint do_mknod(const char * filename, int mode, dev_t dev)
mode334fs/namei.creturn dir->i_op->mknod(dir,basename,namelen,mode,dev);
mode337fs/namei.cint sys_mknod(const char * filename, int mode, dev_t dev)
mode339fs/namei.cif (S_ISFIFO(mode) || suser())
mode340fs/namei.creturn do_mknod(filename,mode,dev);
mode344fs/namei.cint sys_mkdir(const char * pathname, int mode)
mode369fs/namei.creturn dir->i_op->mkdir(dir,basename,namelen,mode);
mode25fs/nfs/dir.cstatic int nfs_create(struct inode *dir, const char *name, int len, int mode,
mode27fs/nfs/dir.cstatic int nfs_mkdir(struct inode *dir, const char *name, int len, int mode);
mode34fs/nfs/dir.cstatic int nfs_mknod(struct inode *dir, const char *name, int len, int mode,
mode241fs/nfs/dir.centry->expiration_date = jiffies + (S_ISDIR(fattr->mode)
mode326fs/nfs/dir.cstatic int nfs_create(struct inode *dir, const char *name, int len, int mode,
mode347fs/nfs/dir.csattr.mode = mode;
mode365fs/nfs/dir.cint mode, int rdev)
mode384fs/nfs/dir.csattr.mode = mode;
mode386fs/nfs/dir.cif (S_ISCHR(mode) || S_ISBLK(mode))
mode399fs/nfs/dir.cstatic int nfs_mkdir(struct inode *dir, const char *name, int len, int mode)
mode418fs/nfs/dir.csattr.mode = mode;
mode505fs/nfs/dir.csattr.mode = S_IFLNK | 0777; /* SunOS 4.1.2 crashes without this! */
mode606fs/nfs/dir.cinode->i_mode = fattr->mode;
mode190fs/nfs/inode.csattr.mode = inode->i_mode;
mode110fs/nfs/proc.cfattr->mode = ntohl(*p++);
mode131fs/nfs/proc.c*p++ = htonl(sattr->mode);
mode43fs/nfs/symlink.cint flag, int mode, struct inode **res_inode)
mode80fs/nfs/symlink.cerror = open_namei(res, flag, mode, res_inode, dir);
mode161fs/open.cint sys_access(const char * filename,int mode)
mode166fs/open.cmode &= 0007;
mode176fs/open.cif ((res & 0007 & mode) == mode)
mode185fs/open.c(!(mode & 1) || (i_mode & 0111)))
mode232fs/open.cint sys_fchmod(unsigned int fd, mode_t mode)
mode245fs/open.cinode->i_mode = (mode & 07777) | (inode->i_mode & ~07777);
mode253fs/open.cint sys_chmod(const char * filename, mode_t mode)
mode269fs/open.cinode->i_mode = (mode & 07777) | (inode->i_mode & ~07777);
mode351fs/open.cint sys_open(const char * filename,int flag,int mode)
mode373fs/open.ci = open_namei(filename,flag,mode,&inode,NULL);
mode413fs/open.cint sys_creat(const char * pathname, int mode)
mode415fs/open.creturn sys_open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
mode42fs/proc/link.cint flag, int mode, struct inode ** res_inode)
mode158include/asm/dma.hstatic __inline__ void set_dma_mode(unsigned int dmanr, char mode)
mode161include/asm/dma.houtb(mode | dmanr,  DMA1_MODE_REG);
mode163include/asm/dma.houtb(mode | (dmanr&3),  DMA2_MODE_REG);
mode167include/linux/cdrom.hu_char  mode;      /* cache control byte      */
mode66include/linux/ext_fs.hextern int ext_create(struct inode * dir,const char * name, int len, int mode,
mode68include/linux/ext_fs.hextern int ext_mkdir(struct inode * dir, const char * name, int len, int mode);
mode74include/linux/ext_fs.hextern int ext_mknod(struct inode * dir, const char * name, int len, int mode, int rdev);
mode311include/linux/fs.hextern int open_namei(const char * pathname, int flag, int mode,
mode313include/linux/fs.hextern int do_mknod(const char * filename, int mode, dev_t dev);
mode75include/linux/minix_fs.hextern int minix_create(struct inode * dir,const char * name, int len, int mode,
mode77include/linux/minix_fs.hextern int minix_mkdir(struct inode * dir, const char * name, int len, int mode);
mode83include/linux/minix_fs.hextern int minix_mknod(struct inode * dir, const char * name, int len, int mode, int rdev);
mode135include/linux/msdos_fs.hextern int msdos_create(struct inode *dir,const char *name,int len,int mode,
mode137include/linux/msdos_fs.hextern int msdos_mkdir(struct inode *dir,const char *name,int len,int mode);
mode129include/linux/nfs.hu_int mode;
mode145include/linux/nfs.hu_int mode;
mode9include/linux/vt.hchar mode;    /* vt mode */
mode48init/main.cstatic inline _syscall3(int,open,const char *,file,int,flag,int,mode)
mode1317kernel/chr_drv/console.cvtmode.mode  = VT_AUTO;
mode236kernel/chr_drv/tty_io.cif (vt_cons[new_console].vt_mode.mode == VT_PROCESS)
mode258kernel/chr_drv/tty_io.cvt_cons[new_console].vt_mode.mode = VT_AUTO;
mode313kernel/chr_drv/tty_io.cif (vt_cons[fg_console].vt_mode.mode == VT_PROCESS)
mode344kernel/chr_drv/tty_io.cvt_cons[fg_console].vt_mode.mode = VT_AUTO;
mode255kernel/chr_drv/vt.cchar mode;
mode258kernel/chr_drv/vt.cmode = get_fs_byte(&vtmode->mode);
mode259kernel/chr_drv/vt.cif (mode != VT_AUTO && mode != VT_PROCESS)
mode261kernel/chr_drv/vt.cvt_cons[console].vt_mode.mode = mode;
mode277kernel/chr_drv/vt.cput_fs_byte(vt_cons[console].vt_mode.mode, &vtmode->mode);
mode350kernel/chr_drv/vt.cif (vt_cons[console].vt_mode.mode != VT_PROCESS)