Searched refs:recv (Results 51 - 75 of 157) sorted by relevance

1234567

/freebsd-11-stable/contrib/wpa/src/drivers/
H A Ddriver_wired.c125 len = recv(sock, buf, sizeof(buf), 0);
127 wpa_printf(MSG_ERROR, "recv: %s", strerror(errno));
143 len = recv(sock, buf, sizeof(buf), 0);
145 wpa_printf(MSG_ERROR, "recv: %s", strerror(errno));
/freebsd-11-stable/lib/libc/sys/
H A DMakefile.inc257 recv.2 \
427 MLINKS+=recv.2 recvfrom.2 \
428 recv.2 recvmsg.2
/freebsd-11-stable/sys/dev/firewire/
H A Dif_fwip.c337 xfer->recv.payload = mtod(m, uint32_t *);
338 xfer->recv.pay_len = MCLBYTES;
827 xfer->recv.payload = mtod(m, uint32_t *);
828 xfer->recv.pay_len = MCLBYTES;
849 fp = &xfer->recv.hdr;
H A Dfirewirereg.h245 } send, recv; member in struct:fw_xfer
/freebsd-11-stable/contrib/ofed/librdmacm/
H A Dpreload.c66 ssize_t (*recv)(int socket, void *buf, size_t len, int flags); member in struct:socket_calls
391 real.recv = dlsym(RTLD_NEXT, "recv");
418 rs.recv = dlsym(RTLD_DEFAULT, "rrecv");
639 ret = real.recv(sfd, &msg, sizeof msg, MSG_PEEK);
787 ssize_t recv(int socket, void *buf, size_t len, int flags) function
791 rrecv(fd, buf, len, flags) : real.recv(fd, buf, len, flags);
/freebsd-11-stable/contrib/ntp/scripts/monitoring/
H A Dntploopstat310 $ret = recv(S,$reply,$len,0);
314 warn("$0: recv failed: $!\n");
/freebsd-11-stable/lib/libc/net/
H A DMakefile.inc16 rcmd.c rcmdsh.c recv.c rthdr.c sctp_sys_calls.c send.c \
/freebsd-11-stable/sys/netinet/
H A Dsctp_os_bsd.h386 #define SCTP_SORESERVE(so, send, recv) soreserve(so, send, recv)
/freebsd-11-stable/usr.sbin/portsnap/phttpget/
H A Dphttpget.c242 len = recv(sd, resbuf + *resbuflen, BUFSIZ - *resbuflen, 0);
276 len = recv(sd, resbuf, BUFSIZ, 0);
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dsocket_api.c158 return (sock->methods->recv(sock, region, minimum, task, action, arg));
/freebsd-11-stable/contrib/gcclibs/libmudflap/
H A Dmf-runtime.h184 #pragma redefine_extname recv __mfwrap_recv
/freebsd-11-stable/contrib/ldns/
H A Dnet.c739 rc = recv(sockfd, (void*) (wire + bytes),
765 rc = recv(sockfd, (void*) (wire + bytes),
793 rc = recv(sockfd, (void*) (wire + bytes),
814 rc = recv(sockfd, (void*) (wire + bytes),
/freebsd-11-stable/crypto/heimdal/lib/gssapi/ntlm/
H A Daccept_sec_context.c241 _gss_ntlm_set_key(&ctx->u.v2.recv, 0,
/freebsd-11-stable/tools/tools/netrate/http/
H A Dhttp.c136 len = recv(sock, buffer, BUFFER, 0);
139 warn("recv");
/freebsd-11-stable/tools/tools/netrate/httpd/
H A Dhttpd.c111 len = recv(sock, buffer, BUFFER, 0);
113 warn("recv");
/freebsd-11-stable/tools/tools/netrate/netreceive/
H A Dnetreceive.c116 y = recv(t->fd, t->buf, t->buflen, MSG_DONTWAIT);
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dsnmpd.h196 ssize_t (*recv)(struct tport *, struct port_input *); member in struct:transport_def
/freebsd-11-stable/contrib/ofed/libcxgb4/
H A Dlibcxgb4.h248 unsigned long recv; member in struct:c4iw_stats
/freebsd-11-stable/usr.sbin/bluetooth/btpand/
H A Dchannel.c229 if (chan->recv(pkt) == true)
H A Dserver.c249 chan->recv = bnep_recv;
H A Dclient.c153 chan->recv = bnep_recv;
/freebsd-11-stable/contrib/wpa/src/l2_packet/
H A Dl2_packet_privsep.c202 res = recv(l2->fd, reply, sizeof(reply), 0);
204 wpa_printf(MSG_ERROR, "recv: %s", strerror(errno));
/freebsd-11-stable/contrib/wpa/src/radius/
H A Dradius.h215 u8 *recv; member in struct:radius_ms_mppe_keys
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-sita.c185 if ((len = recv(fd, buf, count, 0)) <= 0) return -1; /* read in whatever data was sent to us */
728 if ((len = recv(fd, buf, sizeof(buf), 0)) <= 0) return 0; /* read in whatever data was sent to us */
781 recv(fd, &byte, 1, 0); /* read another byte in */
950 if ((len = recv(fd, (bp + offset), count, 0)) <= 0) {
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Deapol_test.c852 if (keys && keys->send == NULL && keys->recv == NULL) {
863 if (keys->recv) {
865 keys->recv, keys->recv_len);
869 os_memcpy(e->authenticator_pmk, keys->recv,
884 os_free(keys->recv);

Completed in 383 milliseconds

1234567