Searched refs:SOCK_NONBLOCK (Results 1 – 11 of 11) sorted by relevance
/Linux-v5.10/tools/perf/trace/beauty/ |
D | socket_type.c | 13 #ifndef SOCK_NONBLOCK 14 # define SOCK_NONBLOCK 00004000 macro
|
/Linux-v5.10/arch/parisc/include/asm/ |
D | socket.h | 10 #define SOCK_NONBLOCK 0x40000000 macro
|
/Linux-v5.10/arch/alpha/include/asm/ |
D | socket.h | 10 #define SOCK_NONBLOCK 0x40000000 macro
|
/Linux-v5.10/arch/mips/include/asm/ |
D | socket.h | 46 #define SOCK_NONBLOCK O_NONBLOCK macro
|
/Linux-v5.10/samples/bpf/ |
D | sock_example.h | 18 sock = socket(PF_PACKET, SOCK_RAW | SOCK_NONBLOCK | SOCK_CLOEXEC, htons(ETH_P_ALL)); in open_raw_sock()
|
/Linux-v5.10/include/linux/ |
D | net.h | 80 #ifndef SOCK_NONBLOCK 81 #define SOCK_NONBLOCK O_NONBLOCK macro
|
/Linux-v5.10/net/ |
D | socket.c | 1510 BUILD_BUG_ON(SOCK_NONBLOCK & SOCK_TYPE_MASK); in __sys_socket() 1513 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) in __sys_socket() 1517 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) in __sys_socket() 1518 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; in __sys_socket() 1544 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) in __sys_socketpair() 1548 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) in __sys_socketpair() 1549 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; in __sys_socketpair() 1712 if (flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK)) in __sys_accept4_file() 1715 if (SOCK_NONBLOCK != O_NONBLOCK && (flags & SOCK_NONBLOCK)) in __sys_accept4_file() 1716 flags = (flags & ~SOCK_NONBLOCK) | O_NONBLOCK; in __sys_accept4_file()
|
/Linux-v5.10/tools/testing/selftests/bpf/prog_tests/ |
D | sockmap_listen.c | 630 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()
|
/Linux-v5.10/drivers/xen/ |
D | pvcalls-front.c | 782 nonblock = flags & SOCK_NONBLOCK; in pvcalls_front_accept()
|
/Linux-v5.10/net/smc/ |
D | af_smc.c | 1134 rc = kernel_accept(lsmc->clcsock, &new_clcsock, SOCK_NONBLOCK); in smc_clcsock_accept()
|
/Linux-v5.10/net/sctp/ |
D | socket.c | 5558 if (flags & SOCK_NONBLOCK) in sctp_getsockopt_peeloff_common()
|