Lines Matching defs:mem
950 lwip_recv_tcp(struct lwip_sock *sock, void *mem, size_t len, int flags)
1013 the supplied memory pointer mem */
1014 pbuf_copy_partial(p, (u8_t *)mem + recvd, copylen, 0);
1230 lwip_recvfrom(int s, void *mem, size_t len, int flags,
1235 return lwip_recvfrom_internal(s, mem, len, flags, from, fromlen);
1237 return distributed_net_recvfrom(s, mem, len, flags, from, fromlen);
1241 lwip_recvfrom_internal(int s, void *mem, size_t len, int flags,
1248 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom(%d, %p, %"SZT_F", 0x%x, ..)\n", s, mem, len, flags));
1255 ret = lwip_recv_tcp(sock, mem, len, flags);
1266 vec.iov_base = mem;
1295 lwip_read(int s, void *mem, size_t len)
1297 return lwip_recvfrom(s, mem, len, 0, NULL, NULL);
1318 lwip_recv(int s, void *mem, size_t len, int flags)
1320 return lwip_recvfrom(s, mem, len, flags, NULL, NULL);