/src/sys/lib/libsa/ |
net.c | 91 saseconds_t tmo, tleft; local in function:sendrecv 100 tleft = 0; 103 if (tleft <= 0) { 110 tleft = tmo; 119 tleft = 0; 130 cc = (*rproc)(d, rbuf, rsize, tleft); 137 tleft -= t - tlast;
|
ether.c | 92 readether(struct iodesc *d, void *pkt, size_t len, saseconds_t tleft, 106 n = netif_get(d, eh, len, tleft);
|
udp.c | 106 readudp(struct iodesc *d, void *pkt, size_t len, saseconds_t tleft) 112 n = readip(d, uh, len + sizeof(*uh), tleft, IPPROTO_UDP);
|
ip.c | 121 readip(struct iodesc *d, void *pkt, size_t len, time_t tleft, u_int8_t proto) 130 n = readether(d, ip, len + sizeof(*ip), tleft, &etype);
|
rarp.c | 175 rarprecv(struct iodesc *d, void *pkt, size_t len, saseconds_t tleft) 186 n = readether(d, pkt, len, tleft, &etype);
|
arp.c | 190 arprecv(struct iodesc *d, void *pkt, size_t len, saseconds_t tleft) 200 n = readether(d, pkt, len, tleft, &etype);
|
bootp.c | 303 bootprecv(struct iodesc *d, void *pkt, size_t len, saseconds_t tleft) 313 n = readudp(d, pkt, len, tleft);
|
rpc.c | 235 recvrpc(struct iodesc *d, void *pkt, size_t len, saseconds_t tleft) 247 n = readudp(d, pkt, len, tleft);
|
tftp.c | 102 recvtftp(struct iodesc *d, void *pkt, size_t len, saseconds_t tleft) 109 n = readudp(d, pkt, len, tleft);
|
/src/sbin/mount_nfs/ |
udp_xfer.c | 91 readudp(struct iodesc *d, void *pkt, size_t len, time_t tleft) 95 if (poll(&pfd, 1, tleft * 1000) != 1)
|
/src/sys/arch/i386/stand/pxeboot/ |
pxe.c | 154 readudp(struct iodesc *d, void *pkt, size_t len, saseconds_t tleft)
|