/linux/arch/mips/include/asm/ |
A 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/ipc/ |
A D | mqueue.c | 863 if (!(oflag & O_CREAT)) in prepare_open() 873 if ((oflag & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL)) in prepare_open() 875 if ((oflag & O_ACCMODE) == (O_RDWR | O_WRONLY)) in prepare_open() 877 acc = oflag2acc[oflag & O_ACCMODE]; in prepare_open() 891 audit_mq_open(oflag, mode, attr); in do_mq_open() 908 error = prepare_open(path.dentry, oflag, ro, mode, name, attr); in do_mq_open() 910 struct file *file = dentry_open(&path, oflag, current_cred()); in do_mq_open() 937 return do_mq_open(u_name, oflag, mode, u_attr ? &attr : NULL); in SYSCALL_DEFINE4() 1552 int, oflag, compat_mode_t, mode, in COMPAT_SYSCALL_DEFINE4() argument 1556 if (u_attr && oflag & O_CREAT) { in COMPAT_SYSCALL_DEFINE4() [all …]
|
/linux/tools/perf/Documentation/ |
A D | perf-iostat.txt | 54 $ perf iostat -- dd if=/dev/zero of=/dev/nvme0n1 bs=1M oflag=direct 73 $ perf iostat 0000:17,0:3a -- dd if=/dev/zero of=/dev/nvme0n1 bs=1M oflag=direct
|
/linux/include/linux/ |
A D | audit.h | 411 extern void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr); 474 static inline void audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr) in audit_mq_open() argument 477 __audit_mq_open(oflag, mode, attr); in audit_mq_open() 659 static inline void audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr) in audit_mq_open() argument
|
A D | compat.h | 756 int oflag, compat_mode_t mode,
|
A D | syscalls.h | 797 asmlinkage long sys_mq_open(const char __user *name, int oflag, umode_t mode, struct mq_attr __user…
|
/linux/tools/testing/selftests/zram/ |
A D | zram01.sh | 43 oflag=append count=1 bs=1024 status=none \
|
/linux/Documentation/admin-guide/device-mapper/ |
A 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
|
A D | dm-dust.rst | 82 $ sudo dd if=/dev/zero of=/dev/mapper/dust1 bs=512 count=128 oflag=direct 131 $ sudo dd if=/dev/zero of=/dev/mapper/dust1 bs=512 count=128 oflag=direct
|
/linux/kernel/ |
A D | audit.h | 185 int oflag; member
|
A D | auditsc.c | 1389 context->mq_open.oflag, context->mq_open.mode, in show_special() 2498 void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr) in __audit_mq_open() argument 2507 context->mq_open.oflag = oflag; in __audit_mq_open()
|
/linux/fs/nfsd/ |
A D | nfs4state.c | 555 __nfs4_get_fd(struct nfs4_file *f, int oflag) in __nfs4_get_fd() argument 557 if (f->fi_fds[oflag]) in __nfs4_get_fd() 558 return nfsd_file_get(f->fi_fds[oflag]); in __nfs4_get_fd() 722 static void __nfs4_file_put_access(struct nfs4_file *fp, int oflag) in __nfs4_file_put_access() argument 726 if (atomic_dec_and_lock(&fp->fi_access[oflag], &fp->fi_lock)) { in __nfs4_file_put_access() 730 swap(f1, fp->fi_fds[oflag]); in __nfs4_file_put_access() 731 if (atomic_read(&fp->fi_access[1 - oflag]) == 0) in __nfs4_file_put_access() 4926 int oflag = nfs4_access_to_omode(open->op_share_access); in nfs4_get_vfs_file() local 4958 if (!fp->fi_fds[oflag]) { in nfs4_get_vfs_file() 4964 if (!fp->fi_fds[oflag]) { in nfs4_get_vfs_file() [all …]
|
/linux/Documentation/userspace-api/media/v4l/ |
A D | libv4l-introduction.rst | 119 .. c:function:: int v4l2_open(const char *file, int oflag, ...)
|
/linux/Documentation/filesystems/ |
A D | zonefs.rst | 397 # dd if=/dev/zero of=/mnt/seq/0 bs=4096 count=1 conv=notrunc oflag=direct
|