taglinefilesource code
noblock279include/linux/skbuff.hextern struct sk_buff *    skb_recv_datagram(struct sock *sk,unsigned flags,int noblock, int *err);
noblock1105net/inet/af_inet.cstatic int inet_recvfrom(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1117net/inet/af_inet.creturn(sk->prot->recvfrom(sk, (unsigned char *) ubuf, size, noblock, flags,
noblock1122net/inet/af_inet.cstatic int inet_recv(struct socket *sock, void *ubuf, int size, int noblock,
noblock1126net/inet/af_inet.creturn inet_recvfrom(sock,ubuf,size,noblock,flags,NULL,NULL);
noblock1129net/inet/af_inet.cstatic int inet_read(struct socket *sock, char *ubuf, int size, int noblock)
noblock1138net/inet/af_inet.creturn(sk->prot->read(sk, (unsigned char *) ubuf, size, noblock, 0));
noblock1141net/inet/af_inet.cstatic int inet_send(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1155net/inet/af_inet.creturn(sk->prot->write(sk, (unsigned char *) ubuf, size, noblock, flags));
noblock1158net/inet/af_inet.cstatic int inet_write(struct socket *sock, char *ubuf, int size, int noblock)
noblock1160net/inet/af_inet.creturn inet_send(sock,ubuf,size,noblock,0);
noblock1163net/inet/af_inet.cstatic int inet_sendto(struct socket *sock, void *ubuf, int size, int noblock, 
noblock1179net/inet/af_inet.creturn(sk->prot->sendto(sk, (unsigned char *) ubuf, size, noblock, flags, 
noblock52net/inet/datagram.cstruct sk_buff *skb_recv_datagram(struct sock *sk, unsigned flags, int noblock, int *err)
noblock88net/inet/datagram.cif (noblock)
noblock1024net/inet/ipx.cstatic int ipx_sendto(struct socket *sock, void *ubuf, int len, int noblock,
noblock1200net/inet/ipx.cstatic int ipx_send(struct socket *sock, void *ubuf, int size, int noblock, unsigned flags)
noblock1202net/inet/ipx.creturn ipx_sendto(sock,ubuf,size,noblock,flags,NULL,0);
noblock1205net/inet/ipx.cstatic int ipx_recvfrom(struct socket *sock, void *ubuf, int size, int noblock,
noblock1226net/inet/ipx.cskb=skb_recv_datagram(sk,flags,noblock,&er);
noblock1247net/inet/ipx.cstatic int ipx_write(struct socket *sock, char *ubuf, int size, int noblock)
noblock1249net/inet/ipx.creturn ipx_send(sock,ubuf,size,noblock,0);
noblock1253net/inet/ipx.cstatic int ipx_recv(struct socket *sock, void *ubuf, int size , int noblock,
noblock1259net/inet/ipx.creturn ipx_recvfrom(sock,ubuf,size,noblock,flags,NULL, NULL);
noblock1262net/inet/ipx.cstatic int ipx_read(struct socket *sock, char *ubuf, int size, int noblock)
noblock1264net/inet/ipx.creturn ipx_recv(sock,ubuf,size,noblock,0);
noblock140net/inet/packet.cint noblock, unsigned flags, struct sockaddr_in *usin,
noblock224net/inet/packet.cint len, int noblock,  unsigned flags)
noblock226net/inet/packet.creturn(packet_sendto(sk, buff, len, noblock, flags, NULL, 0));
noblock284net/inet/packet.cint noblock, unsigned flags, struct sockaddr_in *sin,
noblock312net/inet/packet.cskb=skb_recv_datagram(sk,flags,noblock,&err);
noblock365net/inet/packet.cint len, int noblock, unsigned flags)
noblock367net/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);
noblock432net/inet/sock.cstruct sk_buff *sock_alloc_send_skb(struct sock *sk, unsigned long size, int noblock, int *errcode)
noblock464net/inet/sock.cif(noblock)
noblock210net/inet/sock.hunsigned char *from, int len, int noblock,
noblock214net/inet/sock.hunsigned char *from, int len, int noblock,
noblock296net/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);