Lines Matching refs:name
19 * 3. The name of the author may not be used to endorse or promote products
114 /** name of the option to process */
405 lwip_bind(int s, const struct sockaddr *name, socklen_t namelen)
418 /* check size, familiy and alignment of 'name' */
420 ((name->sa_family) == AF_INET) && ((((mem_ptr_t)name) % 4) == 0)),
422 name_in = (const struct sockaddr_in *)(void*)name;
471 lwip_connect(int s, const struct sockaddr *name, socklen_t namelen)
482 /* check size, familiy and alignment of 'name' */
484 ((name->sa_family) == AF_INET) && ((((mem_ptr_t)name) % 4) == 0)),
486 name_in = (const struct sockaddr_in *)(void*)name;
1408 lwip_getaddrname(int s, struct sockaddr *name, socklen_t *namelen, u8_t local)
1437 MEMCPY(name, &sin, *namelen);
1443 lwip_getpeername(int s, struct sockaddr *name, socklen_t *namelen)
1445 return lwip_getaddrname(s, name, namelen, 0);
1449 lwip_getsockname(int s, struct sockaddr *name, socklen_t *namelen)
1451 return lwip_getaddrname(s, name, namelen, 1);