taglinefilesource code
noblock138include/linux/skbuff.hextern struct sk_buff *    skb_recv_datagram(struct sock *sk,unsigned flags,int noblock, int *err);
noblock1038net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1050net/inet/af_inet.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
noblock1055net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
noblock1059net/inet/af_inet.creturn inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL);
noblock1062net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
noblock1071net/inet/af_inet.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0));
noblock1074net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1088net/inet/af_inet.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
noblock1091net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
noblock1093net/inet/af_inet.creturn inet_send(sock,ubuf,size,noblock,0);
noblock1096net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1112net/inet/af_inet.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
noblock53net/inet/datagram.cstruct sk_buff *skb_recv_datagram(struct sock *sk, unsigned flags, int noblock, int *err)
noblock87net/inet/datagram.cif (noblock)
noblock955net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
noblock1130net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
noblock1132net/inet/ipx.creturn ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0);
noblock1135net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
noblock1156net/inet/ipx.cskb=skb_recv_datagram(sk,flags,noblock,&er);
noblock1177net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
noblock1179net/inet/ipx.creturn ipx_send(sock,ubuf,size,noblock,0);
noblock1183net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
noblock1189net/inet/ipx.creturn ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL);
noblock1192net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
noblock1194net/inet/ipx.creturn ipx_recv(sock,ubuf,size,noblock,0);
noblock124net/inet/packet.cint noblock, unsigned flags, struct sockaddr_in *usin,
noblock208net/inet/packet.cint len, int noblock,  unsigned flags)
noblock210net/inet/packet.creturn(packet_sendto(sk, buff, len, noblock, flags, NULL, 0));
noblock267net/inet/packet.cint noblock, unsigned flags, struct sockaddr_in *sin,
noblock295net/inet/packet.cskb=skb_recv_datagram(sk,flags,noblock,&err);
noblock348net/inet/packet.cint len, int noblock, unsigned flags)
noblock350net/inet/packet.creturn(packet_recvfrom(sk, buff, len, noblock, flags, NULL, NULL));
noblock148net/inet/raw.cint len, int noblock, unsigned flags, struct sockaddr_in *usin, int addr_len)
noblock210net/inet/raw.cif (noblock) 
noblock267net/inet/raw.cstatic int raw_write(struct sock *sk, unsigned char *buff, int len, int noblock,
noblock270net/inet/raw.creturn(raw_sendto(sk, buff, len, noblock, flags, NULL, 0));
noblock315net/inet/raw.cint noblock, unsigned flags, struct sockaddr_in *sin,
noblock329net/inet/raw.cskb=skb_recv_datagram(sk,flags,noblock,&err);
noblock351net/inet/raw.cint raw_read (struct sock *sk, unsigned char *buff, int len, int noblock,unsigned flags)
noblock353net/inet/raw.creturn(raw_recvfrom(sk, buff, len, noblock, flags, NULL, NULL));
noblock31net/inet/raw.hint len, int noblock, unsigned flags,
noblock34net/inet/raw.hint len, int noblock, unsigned flags);
noblock196net/inet/sock.hunsigned char *from, int len, int noblock,
noblock200net/inet/sock.hunsigned char *from, int len, int noblock,
noblock333net/inet/udp.cstatic int udp_sendto(struct sock *sk, unsigned char *from, int len, int noblock,
noblock392net/inet/udp.cstatic int udp_write(struct sock *sk, unsigned char *buff, int len, int noblock,
noblock395net/inet/udp.creturn(udp_sendto(sk, buff, len, noblock, flags, NULL, 0));
noblock459net/inet/udp.cint noblock, unsigned flags, struct sockaddr_in *sin,
noblock479net/inet/udp.cskb=skb_recv_datagram(sk,flags,noblock,&er);
noblock510net/inet/udp.cint udp_read(struct sock *sk, unsigned char *buff, int len, int noblock,
noblock513net/inet/udp.creturn(udp_recvfrom(sk, buff, len, noblock, flags, NULL, NULL));
noblock37net/inet/udp.hint len, int noblock, unsigned flags,
noblock40net/inet/udp.hint len, int noblock, unsigned flags);