Searched refs:timeo_p (Results 1 – 6 of 6) sorted by relevance
| /linux/net/core/ |
| H A D | stream.c | 60 int sk_stream_wait_connect(struct sock *sk, long *timeo_p) in sk_stream_wait_connect() argument 72 if (!*timeo_p) in sk_stream_wait_connect() 75 return sock_intr_errno(*timeo_p); in sk_stream_wait_connect() 79 done = sk_wait_event(sk, timeo_p, in sk_stream_wait_connect() 122 int sk_stream_wait_memory(struct sock *sk, long *timeo_p) in sk_stream_wait_memory() argument 126 long current_timeo = *timeo_p; in sk_stream_wait_memory() 139 if (!*timeo_p) in sk_stream_wait_memory() 159 current_timeo = *timeo_p; in sk_stream_wait_memory() 165 *timeo_p = current_timeo; in sk_stream_wait_memory() 185 err = sock_intr_errno(*timeo_p); in sk_stream_wait_memory()
|
| H A D | datagram.c | 90 int *err, long *timeo_p, in __skb_wait_for_more_packets() argument 123 *timeo_p = schedule_timeout(*timeo_p); in __skb_wait_for_more_packets() 128 error = sock_intr_errno(*timeo_p); in __skb_wait_for_more_packets()
|
| H A D | sock.c | 426 static int sock_set_timeout(long *timeo_p, sockptr_t optval, int optlen, in sock_set_timeout() argument 442 WRITE_ONCE(*timeo_p, 0); in sock_set_timeout() 455 WRITE_ONCE(*timeo_p, val); in sock_set_timeout()
|
| /linux/net/sctp/ |
| H A D | socket.c | 76 long *timeo_p, size_t msg_len); 77 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p); 78 static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p); 9001 static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p) in sctp_wait_for_packet() argument 9039 *timeo_p = schedule_timeout(*timeo_p); in sctp_wait_for_packet() 9047 error = sock_intr_errno(*timeo_p); in sctp_wait_for_packet() 9247 long *timeo_p, size_t msg_len) in sctp_wait_for_sndbuf() argument 9250 long current_timeo = *timeo_p; in sctp_wait_for_sndbuf() 9255 *timeo_p, msg_len); in sctp_wait_for_sndbuf() 9268 if ((!*timeo_p) || (transport && transport->dead)) in sctp_wait_for_sndbuf() [all …]
|
| /linux/include/net/ |
| H A D | sock.h | 1227 int sk_stream_wait_connect(struct sock *sk, long *timeo_p); 1228 int sk_stream_wait_memory(struct sock *sk, long *timeo_p); 1229 void sk_stream_wait_close(struct sock *sk, long timeo_p);
|
| /linux/include/linux/ |
| H A D | skbuff.h | 4193 int *err, long *timeo_p,
|