Home
last modified time | relevance | path

Searched refs:SOCK_NONBLOCK (Results 1 – 17 of 17) sorted by relevance

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/
H A Dsocket_type.h52 SOCK_NONBLOCK = 00004000 /* Atomically mark descriptor(s) as enumerator
54 #define SOCK_NONBLOCK SOCK_NONBLOCK macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/
H A Dsocket_type.h52 SOCK_NONBLOCK = 00004000 /* Atomically mark descriptor(s) as enumerator
54 #define SOCK_NONBLOCK SOCK_NONBLOCK macro
/OK3568_Linux_fs/kernel/tools/perf/trace/beauty/
H A Dsocket_type.c13 #ifndef SOCK_NONBLOCK
14 # define SOCK_NONBLOCK 00004000 macro
/OK3568_Linux_fs/kernel/arch/parisc/include/asm/
H A Dsocket.h10 #define SOCK_NONBLOCK 0x40000000 macro
/OK3568_Linux_fs/kernel/arch/alpha/include/asm/
H A Dsocket.h10 #define SOCK_NONBLOCK 0x40000000 macro
/OK3568_Linux_fs/kernel/arch/mips/include/asm/
H A Dsocket.h46 #define SOCK_NONBLOCK O_NONBLOCK macro
/OK3568_Linux_fs/kernel/samples/bpf/
H A Dsock_example.h18 sock = socket(PF_PACKET, SOCK_RAW | SOCK_NONBLOCK | SOCK_CLOEXEC, htons(ETH_P_ALL)); in open_raw_sock()
/OK3568_Linux_fs/kernel/include/linux/
H A Dnet.h79 #ifndef SOCK_NONBLOCK
80 #define SOCK_NONBLOCK O_NONBLOCK macro
/OK3568_Linux_fs/kernel/net/
H A Dsocket.c1500 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK); in __sys_socket()
1503 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) in __sys_socket()
1507 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) in __sys_socket()
1508 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; in __sys_socket()
1534 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) in __sys_socketpair()
1538 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) in __sys_socketpair()
1539 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; in __sys_socketpair()
1759 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) in __sys_accept4_file()
1762 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) in __sys_accept4_file()
1763 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; in __sys_accept4_file()
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dsockmap_listen.c630 s = socket_loopback(family, sotype | SOCK_NONBLOCK); in test_accept_after_delete()
684 s = socket_loopback(family, sotype | SOCK_NONBLOCK); in test_accept_before_delete()
795 s = socket_loopback(family, sotype | SOCK_NONBLOCK); in test_syn_recv_insert_delete()
937 s = socket_loopback(family, sotype | SOCK_NONBLOCK); in redir_to_connected()
1069 s = socket_loopback(family, sotype | SOCK_NONBLOCK); in redir_to_listening()
1180 s = socket_loopback_reuseport(family, sotype | SOCK_NONBLOCK, in test_reuseport_select_listening()
/OK3568_Linux_fs/external/xserver/hw/xfree86/drivers/modesetting/
H A Dxv.c110 port_priv->dma_socket_fd = socket(PF_UNIX, SOCK_DGRAM | SOCK_NONBLOCK, 0); in ms_exa_xv_set_dma_client()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/ipc_server/
H A Dsocket_server.cpp452 SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK); in getAndroidLocalSocket()
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_xv.c294 port_priv->dma_socket_fd = socket(PF_UNIX, SOCK_DGRAM | SOCK_NONBLOCK, 0); in glamor_xv_set_dma_client()
/OK3568_Linux_fs/kernel/drivers/xen/
H A Dpvcalls-front.c782 nonblock = flags & SOCK_NONBLOCK; in pvcalls_front_accept()
/OK3568_Linux_fs/kernel/io_uring/
H A Dio_uring.c5047 if (accept->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) in io_accept_prep()
5049 if (SOCK_NONBLOCK != O_NONBLOCK && (accept->flags & SOCK_NONBLOCK)) in io_accept_prep()
5050 accept->flags = (accept->flags & ~SOCK_NONBLOCK) | O_NONBLOCK; in io_accept_prep()
/OK3568_Linux_fs/kernel/net/smc/
H A Daf_smc.c1162 rc = kernel_accept(lsmc->clcsock, &new_clcsock, SOCK_NONBLOCK); in smc_clcsock_accept()
/OK3568_Linux_fs/kernel/net/sctp/
H A Dsocket.c5575 if (flags & SOCK_NONBLOCK) in sctp_getsockopt_peeloff_common()