/openbmc/linux/tools/include/uapi/asm-generic/ |
H A D | fcntl.h | 38 #ifndef O_NONBLOCK 39 #define O_NONBLOCK 00004000 macro 96 #define O_NDELAY O_NONBLOCK
|
/openbmc/linux/include/uapi/asm-generic/ |
H A D | fcntl.h | 38 #ifndef O_NONBLOCK 39 #define O_NONBLOCK 00004000 macro 96 #define O_NDELAY O_NONBLOCK
|
/openbmc/linux/arch/sparc/include/uapi/asm/ |
H A D | fcntl.h | 11 #define O_NONBLOCK 0x4000 macro 15 #define O_NDELAY (0x0004 | O_NONBLOCK)
|
/openbmc/linux/net/handshake/ |
H A D | handshake-test.c | 222 filp = sock_alloc_file(sock, O_NONBLOCK, NULL); in handshake_req_submit_test4() 257 filp = sock_alloc_file(sock, O_NONBLOCK, NULL); in handshake_req_submit_test5() 295 filp = sock_alloc_file(sock, O_NONBLOCK, NULL); in handshake_req_submit_test6() 328 filp = sock_alloc_file(sock, O_NONBLOCK, NULL); in handshake_req_cancel_test1() 364 filp = sock_alloc_file(sock, O_NONBLOCK, NULL); in handshake_req_cancel_test2() 406 filp = sock_alloc_file(sock, O_NONBLOCK, NULL); in handshake_req_cancel_test3() 464 filp = sock_alloc_file(sock, O_NONBLOCK, NULL); in handshake_req_destroy_test1()
|
/openbmc/openbmc/poky/meta/recipes-extended/shadow/files/ |
H A D | commonio.c-fix-unexpected-open-failure-in-chroot-env.patch | 32 - | O_NOCTTY | O_NONBLOCK | O_NOFOLLOW | O_CLOEXEC); 37 + | O_NOCTTY | O_NONBLOCK | O_NOFOLLOW | O_CLOEXEC); 42 + | O_NOCTTY | O_NONBLOCK | O_NOFOLLOW| O_CLOEXEC);
|
/openbmc/qemu/util/ |
H A D | drm.c | 32 return open(rendernode, O_RDWR | O_CLOEXEC | O_NOCTTY | O_NONBLOCK); in qemu_drm_rendernode_open() 48 r = open(p, O_RDWR | O_CLOEXEC | O_NOCTTY | O_NONBLOCK); in qemu_drm_rendernode_open()
|
/openbmc/linux/scripts/ |
H A D | jobserver-exec | 35 reader = os.open(path, os.O_RDONLY | os.O_NONBLOCK) 42 os.O_RDONLY | os.O_NONBLOCK)
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | test_lirc_mode2_user.c | 69 lircfd = open(argv[1], O_RDWR | O_NONBLOCK); in main() 82 inputfd = open(argv[2], O_RDONLY | O_NONBLOCK); in main()
|
/openbmc/sdeventplus/example/ |
H A D | follow.cpp | 25 int newfd = open(fifo, O_NONBLOCK | O_RDONLY); in reader() 96 int fd = open(fifo, O_NONBLOCK | O_RDONLY); in main()
|
/openbmc/gpioplus/src/gpioplus/internal/ |
H A D | fd.cpp | 94 setFlags(getFlags() & ~O_NONBLOCK); in setBlocking() 98 setFlags(getFlags() | O_NONBLOCK); in setBlocking()
|
/openbmc/obmc-console/ |
H A D | tty-handler.c | 49 flags = th->fd_flags & ~O_NONBLOCK; in tty_set_fd_blocking() 51 flags |= O_NONBLOCK; in tty_set_fd_blocking() 267 th->fd = open(tty_path, O_RDWR | O_NONBLOCK); in tty_init()
|
/openbmc/linux/io_uring/ |
H A D | openclose.c | 121 nonblock_set = op.open_flag & O_NONBLOCK; in io_openat2() 126 op.open_flag |= O_NONBLOCK; in io_openat2() 154 file->f_flags &= ~O_NONBLOCK; in io_openat2()
|
/openbmc/linux/Documentation/userspace-api/media/dvb/ |
H A D | dmx-fwrite.rst | 58 - No data was written. This might happen if ``O_NONBLOCK`` was 60 ``O_NONBLOCK`` is not specified the function will block until buffer
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pyruvate/ |
H A D | 0001-musl-Define-SOCK_NONBLOCK-with-O_NONBLOCK.patch | 4 Subject: [PATCH] musl: Define SOCK_NONBLOCK with O_NONBLOCK 11 [2] https://github.com/search?q=repo%3Abminor%2Fmusl++%22%23define+O_NONBLOCK%22&type=code 96 +pub const SOCK_NONBLOCK: ::c_int = O_NONBLOCK;
|
/openbmc/linux/include/uapi/linux/ |
H A D | pidfd.h | 10 #define PIDFD_NONBLOCK O_NONBLOCK
|
H A D | eventfd.h | 9 #define EFD_NONBLOCK O_NONBLOCK
|
H A D | timerfd.h | 33 #define TFD_NONBLOCK O_NONBLOCK
|
/openbmc/linux/tools/testing/selftests/kvm/lib/ |
H A D | userfaultfd_util.c | 134 uffd = syscall(__NR_userfaultfd, O_CLOEXEC | O_NONBLOCK); in uffd_setup_demand_paging() 151 ret = pipe2(uffd_desc->pipefds, O_CLOEXEC | O_NONBLOCK); in uffd_setup_demand_paging()
|
/openbmc/linux/tools/testing/selftests/mm/ |
H A D | compaction_test.c | 63 O_RDONLY | O_NONBLOCK); in prereq() 97 fd = open("/proc/sys/vm/nr_hugepages", O_RDWR | O_NONBLOCK); in check_compaction()
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | socket.h | 46 #define SOCK_NONBLOCK O_NONBLOCK
|
/openbmc/linux/fs/ |
H A D | eventfd.c | 236 if ((file->f_flags & O_NONBLOCK) || in eventfd_read() 276 else if (!(file->f_flags & O_NONBLOCK)) { in eventfd_write() 397 BUILD_BUG_ON(EFD_NONBLOCK != O_NONBLOCK); in do_eventfd()
|
H A D | signalfd.c | 207 int nonblock = file->f_flags & O_NONBLOCK; in signalfd_read() 259 BUILD_BUG_ON(SFD_NONBLOCK != O_NONBLOCK); in do_signalfd4() 279 O_RDWR | (flags & (O_CLOEXEC | O_NONBLOCK))); in do_signalfd4()
|
/openbmc/linux/arch/mips/kernel/ |
H A D | rtlx.c | 331 return rtlx_open(iminor(inode), (filp->f_flags & O_NONBLOCK) ? 0 : 1); in file_open() 367 if (!rtlx_read_poll(minor, (file->f_flags & O_NONBLOCK) ? 0 : 1)) in file_read() 382 if (file->f_flags & O_NONBLOCK) in file_write()
|
/openbmc/linux/drivers/leds/ |
H A D | uleds.c | 147 } else if (!udev->new_data && (file->f_flags & O_NONBLOCK)) { in uleds_read() 161 if (!(file->f_flags & O_NONBLOCK)) in uleds_read()
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | func-open.rst | 35 When the ``O_NONBLOCK`` flag is given, the :c:func:`read()` 40 with applications must support the ``O_NONBLOCK`` flag.
|