taglinefilesource code
noblock280include/linux/skbuff.hextern struct sk_buff *    skb_recv_datagram(struct sock *sk,unsigned flags,int noblock, int *err);
noblock1129net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1141net/inet/af_inet.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
noblock1146net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
noblock1150net/inet/af_inet.creturn inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL);
noblock1153net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
noblock1162net/inet/af_inet.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0));
noblock1165net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1179net/inet/af_inet.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
noblock1182net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
noblock1184net/inet/af_inet.creturn inet_send(sock,ubuf,size,noblock,0);
noblock1187net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1203net/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)
noblock89net/inet/datagram.cif (noblock)
noblock1666net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
noblock1709net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
noblock1711net/inet/ipx.creturn ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0);
noblock1714net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
noblock1738net/inet/ipx.cskb=skb_recv_datagram(sk,flags,noblock,&er);
noblock1759net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
noblock1761net/inet/ipx.creturn ipx_send(sock,ubuf,size,noblock,0);
noblock1765net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
noblock1771net/inet/ipx.creturn ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL);
noblock1774net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
noblock1776net/inet/ipx.creturn ipx_recv(sock,ubuf,size,noblock,0);
noblock141net/inet/packet.cint noblock, unsigned flags, struct sockaddr_in *usin,
noblock225net/inet/packet.cint len, int noblock,  unsigned flags)
noblock227net/inet/packet.creturn(packet_sendto(sk, buff, len, noblock, flags, NULL, 0));
noblock285net/inet/packet.cint noblock, unsigned flags, struct sockaddr_in *sin,
noblock313net/inet/packet.cskb=skb_recv_datagram(sk,flags,noblock,&err);
noblock366net/inet/packet.cint len, int noblock, unsigned flags)
noblock368net/inet/packet.creturn(packet_recvfrom(sk, buff, len, noblock, flags, NULL, NULL));
noblock127net/inet/raw.cint len, int noblock, unsigned flags, struct sockaddr_in *usin, int addr_len)
noblock173net/inet/raw.cskb=sock_alloc_send_skb(sk, len+sk->prot->max_header, noblock, &err);
noblock218net/inet/raw.cstatic int raw_write(struct sock *sk, unsigned char *buff, int len, int noblock,
noblock221net/inet/raw.creturn(raw_sendto(sk, buff, len, noblock, flags, NULL, 0));
noblock243net/inet/raw.cint noblock, unsigned flags, struct sockaddr_in *sin,
noblock260net/inet/raw.cskb=skb_recv_datagram(sk,flags,noblock,&err);
noblock282net/inet/raw.cint raw_read (struct sock *sk, unsigned char *buff, int len, int noblock,unsigned flags)
noblock284net/inet/raw.creturn(raw_recvfrom(sk, buff, len, noblock, flags, NULL, NULL));
noblock27net/inet/raw.hint len, int noblock, unsigned flags,
noblock30net/inet/raw.hint len, int noblock, unsigned flags);
noblock434net/inet/sock.cstruct sk_buff *sock_alloc_send_skb(struct sock *sk, unsigned long size, int noblock, int *errcode)
noblock466net/inet/sock.cif(noblock)
noblock219net/inet/sock.hunsigned char *from, int len, int noblock,
noblock223net/inet/sock.hunsigned char *from, int len, int noblock,
noblock305net/inet/sock.hextern struct sk_buff     *sock_alloc_send_skb(struct sock *skb, unsigned long size, int noblock, int *errcode);
noblock342net/inet/udp.cstatic int udp_sendto(struct sock *sk, unsigned char *from, int len, int noblock,
noblock401net/inet/udp.cstatic int udp_write(struct sock *sk, unsigned char *buff, int len, int noblock,
noblock404net/inet/udp.creturn(udp_sendto(sk, buff, len, noblock, flags, NULL, 0));
noblock468net/inet/udp.cint noblock, unsigned flags, struct sockaddr_in *sin,
noblock488net/inet/udp.cskb=skb_recv_datagram(sk,flags,noblock,&er);
noblock519net/inet/udp.cint udp_read(struct sock *sk, unsigned char *buff, int len, int noblock,
noblock522net/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);