/Linux-v5.4/arch/mips/include/asm/ |
D | termios.h | 32 unsigned short iflag, oflag, cflag, lflag; in user_termio_to_kernel_termios() local 40 err |=__get_user(oflag, &termio->c_oflag); in user_termio_to_kernel_termios() 41 termios->c_oflag = (termios->c_oflag & 0xffff0000) | oflag; in user_termio_to_kernel_termios()
|
/Linux-v5.4/ipc/ |
D | mqueue.c | 771 static int prepare_open(struct dentry *dentry, int oflag, int ro, in prepare_open() argument 780 if (!(oflag & O_CREAT)) in prepare_open() 790 if ((oflag & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL)) in prepare_open() 792 if ((oflag & O_ACCMODE) == (O_RDWR | O_WRONLY)) in prepare_open() 794 acc = oflag2acc[oflag & O_ACCMODE]; in prepare_open() 798 static int do_mq_open(const char __user *u_name, int oflag, umode_t mode, in do_mq_open() argument 808 audit_mq_open(oflag, mode, attr); in do_mq_open() 825 error = prepare_open(path.dentry, oflag, ro, mode, name, attr); in do_mq_open() 827 struct file *file = dentry_open(&path, oflag, current_cred()); in do_mq_open() 847 SYSCALL_DEFINE4(mq_open, const char __user *, u_name, int, oflag, umode_t, mode, in SYSCALL_DEFINE4() argument [all …]
|
/Linux-v5.4/include/linux/ |
D | audit.h | 368 extern void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr); 428 static inline void audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr) in audit_mq_open() argument 431 __audit_mq_open(oflag, mode, attr); in audit_mq_open() 599 static inline void audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr) in audit_mq_open() argument
|
D | compat.h | 744 int oflag, compat_mode_t mode,
|
D | syscalls.h | 753 asmlinkage long sys_mq_open(const char __user *name, int oflag, umode_t mode, struct mq_attr __user…
|
/Linux-v5.4/tools/testing/selftests/zram/ |
D | zram01.sh | 43 oflag=append count=1 bs=1024 status=none \
|
/Linux-v5.4/Documentation/admin-guide/device-mapper/ |
D | unstriped.rst | 56 dd if=/dev/zero of=member-${i} bs=${MEMBER_SIZE} count=1 oflag=direct 67 dd if=/dev/urandom of=/dev/mapper/set-${i} bs=${BS} count=${COUNT} oflag=direct
|
D | dm-dust.txt | 68 $ sudo dd if=/dev/zero of=/dev/mapper/dust1 bs=512 count=128 oflag=direct 117 $ sudo dd if=/dev/zero of=/dev/mapper/dust1 bs=512 count=128 oflag=direct
|
/Linux-v5.4/kernel/ |
D | audit.h | 176 int oflag; member
|
D | auditsc.c | 1241 context->mq_open.oflag, context->mq_open.mode, in show_special() 2193 void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr) in __audit_mq_open() argument 2202 context->mq_open.oflag = oflag; in __audit_mq_open()
|
/Linux-v5.4/fs/nfsd/ |
D | nfs4state.c | 434 __nfs4_get_fd(struct nfs4_file *f, int oflag) in __nfs4_get_fd() argument 436 if (f->fi_fds[oflag]) in __nfs4_get_fd() 437 return nfsd_file_get(f->fi_fds[oflag]); in __nfs4_get_fd() 590 static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag) in __nfs4_file_put_access() argument 594 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) { in __nfs4_file_put_access() 598 swap(f1, fp->fi_fds[oflag]); in __nfs4_file_put_access() 599 if (atomic_read(&fp->fi_access[1 - oflag]) == 0) in __nfs4_file_put_access() 4679 int oflag = nfs4_access_to_omode(open->op_share_access); in nfs4_get_vfs_file() local 4711 if (!fp->fi_fds[oflag]) { in nfs4_get_vfs_file() 4717 if (!fp->fi_fds[oflag]) { in nfs4_get_vfs_file() [all …]
|
/Linux-v5.4/Documentation/media/uapi/v4l/ |
D | libv4l-introduction.rst | 129 .. c:function:: int v4l2_open(const char *file, int oflag, ...)
|