Symbol: SOCK_NONBLOCK
drivers/xen/pvcalls-front.c
845
nonblock = arg->flags & SOCK_NONBLOCK;
include/linux/net.h
102
#ifndef SOCK_NONBLOCK
io_uring/net.c
1639
if (accept->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
io_uring/net.c
1641
if (SOCK_NONBLOCK != O_NONBLOCK && (accept->flags & SOCK_NONBLOCK))
io_uring/net.c
1642
accept->flags = (accept->flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
io_uring/net.c
1776
if (sock->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
net/sctp/socket.c
5776
if (flags & SOCK_NONBLOCK)
net/smc/af_smc.c
1757
rc = kernel_accept(lsmc->clcsock, &new_clcsock, SOCK_NONBLOCK);
net/socket.c
1740
BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK);
net/socket.c
1742
if ((type & ~SOCK_TYPE_MASK) & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
net/socket.c
1763
if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
net/socket.c
1764
flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
net/socket.c
1799
if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
net/socket.c
1800
flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
net/socket.c
1822
if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
net/socket.c
1826
if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
net/socket.c
1827
flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
net/socket.c
2062
if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
net/socket.c
2065
if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK))
net/socket.c
2066
flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
samples/bpf/sock_example.h
18
sock = socket(PF_PACKET, SOCK_RAW | SOCK_NONBLOCK | SOCK_CLOEXEC, htons(ETH_P_ALL));
tools/perf/trace/beauty/socket_type.c
15
#ifndef SOCK_NONBLOCK
tools/testing/selftests/bpf/prog_tests/sockmap_basic.c
856
udp = socket_loopback(AF_INET, SOCK_DGRAM | SOCK_NONBLOCK);
tools/testing/selftests/bpf/prog_tests/sockmap_basic.c
925
udp = socket_loopback(AF_INET, SOCK_DGRAM | SOCK_NONBLOCK);
tools/testing/selftests/bpf/prog_tests/sockmap_basic.c
996
udp = socket_loopback(AF_INET, SOCK_DGRAM | SOCK_NONBLOCK);
tools/testing/selftests/bpf/prog_tests/sockmap_listen.c
382
s = socket_loopback(family, sotype | SOCK_NONBLOCK);
tools/testing/selftests/bpf/prog_tests/sockmap_listen.c
437
s = socket_loopback(family, sotype | SOCK_NONBLOCK);
tools/testing/selftests/bpf/prog_tests/sockmap_listen.c
549
s = socket_loopback(family, sotype | SOCK_NONBLOCK);
tools/testing/selftests/bpf/prog_tests/sockmap_listen.c
689
err = create_socket_pairs(family, sotype | SOCK_NONBLOCK, &c0, &c1,
tools/testing/selftests/bpf/prog_tests/sockmap_listen.c
798
s = socket_loopback(family, sotype | SOCK_NONBLOCK);
tools/testing/selftests/bpf/prog_tests/sockmap_listen.c
918
err = create_socket_pairs(family, sotype | SOCK_NONBLOCK, &c0, &c1,
tools/testing/selftests/bpf/prog_tests/sockmap_listen.c
987
s = socket_loopback_reuseport(family, sotype | SOCK_NONBLOCK,
tools/testing/selftests/net/af_unix/msg_oob.c
52
ret = socketpair(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK, 0, self->fd);
tools/testing/selftests/net/af_unix/scm_inq.c
44
err = socketpair(AF_UNIX, variant->type | SOCK_NONBLOCK, 0, self->fd);
tools/testing/selftests/net/af_unix/unix_connreset.c
81
self->client = socket(AF_UNIX, variant->socket_type | SOCK_NONBLOCK, 0);
tools/testing/selftests/net/netfilter/udpclash.c
142
fd = socket(AF_INET, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, IPPROTO_UDP);
tools/testing/selftests/net/so_incoming_cpu.c
130
fd = socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, 0);
tools/testing/selftests/ublk/kublk.c
1125
fd = socket(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK, 0);
tools/testing/vsock/vsock_test.c
1864
fd = socket(AF_VSOCK, SOCK_STREAM | SOCK_NONBLOCK, 0);