Home
last modified time | relevance | path

Searched refs:buflen (Results 1 – 6 of 6) sorted by relevance

/lib/liblwip/src/include/lwip/
Dnetdb.h102 size_t buflen, struct hostent **result, int *h_errnop);
111 #define gethostbyname_r(name, ret, buf, buflen, result, h_errnop) \ argument
112 lwip_gethostbyname_r(name, ret, buf, buflen, result, h_errnop)
/lib/liblwip/src/core/ipv4/
Dip_addr.c276 char *ipaddr_ntoa_r(const ip_addr_t *addr, char *buf, int buflen) in ipaddr_ntoa_r() argument
299 if (len++ >= buflen) { in ipaddr_ntoa_r()
304 if (len++ >= buflen) { in ipaddr_ntoa_r()
/lib/liblwip/src/include/ipv4/lwip/
Dinet.h101 #define inet_ntoa_r(addr, buf, buflen) ipaddr_ntoa_r((ip_addr_t*)&(addr), buf, buflen) argument
Dip_addr.h238 char *ipaddr_ntoa_r(const ip_addr_t *addr, char *buf, int buflen);
/lib/liblwip/src/api/
Dnetdb.c163 size_t buflen, struct hostent **result, int *h_errnop) in lwip_gethostbyname_r() argument
190 if (buflen < (sizeof(struct gethostbyname_r_helper) + namelen + 1 + (MEM_ALIGNMENT - 1))) { in lwip_gethostbyname_r()
Dsockets.c563 u16_t buflen, copylen; in lwip_recvfrom() local
634 buflen = p->tot_len; in lwip_recvfrom()
636 buflen, len, off, sock->lastoffset)); in lwip_recvfrom()
638 buflen -= sock->lastoffset; in lwip_recvfrom()
640 if (len > buflen) { in lwip_recvfrom()
641 copylen = buflen; in lwip_recvfrom()
716 if ((netconn_type(sock->conn) == NETCONN_TCP) && (buflen - copylen > 0)) { in lwip_recvfrom()
2286 u16_t buflen = 0; local
2314 buflen = p->tot_len;
2315 buflen -= sock->lastoffset;
[all …]