Searched refs:timeo_p (Results 1 – 8 of 8) sorted by relevance
| /linux-6.15/net/core/ |
| H A D | stream.c | 56 int sk_stream_wait_connect(struct sock *sk, long *timeo_p) in sk_stream_wait_connect() argument 68 if (!*timeo_p) in sk_stream_wait_connect() 71 return sock_intr_errno(*timeo_p); in sk_stream_wait_connect() 75 done = sk_wait_event(sk, timeo_p, in sk_stream_wait_connect() 118 int sk_stream_wait_memory(struct sock *sk, long *timeo_p) in sk_stream_wait_memory() argument 122 long current_timeo = *timeo_p; in sk_stream_wait_memory() 135 if (!*timeo_p) in sk_stream_wait_memory() 155 current_timeo = *timeo_p; in sk_stream_wait_memory() 161 *timeo_p = current_timeo; in sk_stream_wait_memory() 181 err = sock_intr_errno(*timeo_p); in sk_stream_wait_memory()
|
| H A D | datagram.c | 88 int *err, long *timeo_p, in __skb_wait_for_more_packets() argument 121 *timeo_p = schedule_timeout(*timeo_p); in __skb_wait_for_more_packets() 126 error = sock_intr_errno(*timeo_p); in __skb_wait_for_more_packets()
|
| H A D | sock.c | 424 static int sock_set_timeout(long *timeo_p, sockptr_t optval, int optlen, in sock_set_timeout() argument 440 WRITE_ONCE(*timeo_p, 0); in sock_set_timeout() 453 WRITE_ONCE(*timeo_p, val); in sock_set_timeout()
|
| /linux-6.15/drivers/net/ethernet/chelsio/inline_crypto/chtls/ |
| H A D | chtls_io.c | 911 struct sock *sk, long *timeo_p) in csk_wait_memory() argument 919 current_timeo = *timeo_p; in csk_wait_memory() 920 noblock = (*timeo_p ? false : true); in csk_wait_memory() 932 if (!*timeo_p) { in csk_wait_memory() 955 current_timeo = *timeo_p; in csk_wait_memory() 963 *timeo_p = current_timeo; in csk_wait_memory() 975 err = sock_intr_errno(*timeo_p); in csk_wait_memory()
|
| /linux-6.15/net/sctp/ |
| H A D | socket.c | 77 long *timeo_p, size_t msg_len); 9013 *timeo_p = schedule_timeout(*timeo_p); in sctp_wait_for_packet() 9220 long *timeo_p, size_t msg_len) in sctp_wait_for_sndbuf() argument 9223 long current_timeo = *timeo_p; in sctp_wait_for_sndbuf() 9228 *timeo_p, msg_len); in sctp_wait_for_sndbuf() 9260 *timeo_p = current_timeo; in sctp_wait_for_sndbuf() 9282 err = sock_intr_errno(*timeo_p); in sctp_wait_for_sndbuf() 9339 long current_timeo = *timeo_p; in sctp_wait_for_connect() 9350 if (!*timeo_p) in sctp_wait_for_connect() 9370 *timeo_p = current_timeo; in sctp_wait_for_connect() [all …]
|
| /linux-6.15/include/net/ |
| H A D | sock.h | 1182 int sk_stream_wait_connect(struct sock *sk, long *timeo_p); 1183 int sk_stream_wait_memory(struct sock *sk, long *timeo_p); 1184 void sk_stream_wait_close(struct sock *sk, long timeo_p);
|
| /linux-6.15/net/tipc/ |
| H A D | socket.c | 159 static int tipc_wait_for_connect(struct socket *sock, long *timeo_p); 2524 static int tipc_wait_for_connect(struct socket *sock, long *timeo_p) in tipc_wait_for_connect() argument 2534 if (!*timeo_p) in tipc_wait_for_connect() 2537 return sock_intr_errno(*timeo_p); in tipc_wait_for_connect() 2542 done = sk_wait_event(sk, timeo_p, tipc_sk_connected(sk), in tipc_wait_for_connect()
|
| /linux-6.15/include/linux/ |
| H A D | skbuff.h | 4106 int *err, long *timeo_p,
|