Searched refs:tempaddr (Results 1 – 5 of 5) sorted by relevance
/third_party/lwip/ |
D | 0008-gazelle-fix-lwip_accept-memcpy-sockaddr-large.patch | 15 if (*addrlen > tempaddr.sa.sa_len) { 16 *addrlen = tempaddr.sa.sa_len; 19 + *addrlen = LWIP_MIN(*addrlen, sizeof(tempaddr)); 21 MEMCPY(addr, &tempaddr, *addrlen);
|
D | 0053-cleancode-improve-lwipopts.h-readability.patch | 237 IPADDR_PORT_TO_SOCKADDR(&tempaddr, &naddr, port); 240 if (*addrlen > tempaddr.sa.sa_len) { 241 *addrlen = tempaddr.sa.sa_len; 244 *addrlen = LWIP_MIN(*addrlen, sizeof(tempaddr)); 247 MEMCPY(addr, &tempaddr, *addrlen);
|
D | 0002-adapt-lstack.patch | 839 IPADDR_PORT_TO_SOCKADDR(&tempaddr, &naddr, port); 841 if (*addrlen > tempaddr.sa.sa_len) { 842 *addrlen = tempaddr.sa.sa_len; 845 MEMCPY(addr, &tempaddr, *addrlen);
|
/third_party/lame/frontend/ |
D | rtp.c | 103 unsigned int tempaddr; in rtp_socket() local 112 tempaddr = inet_addr(address); in rtp_socket() 115 sin.sin_addr.s_addr = tempaddr; in rtp_socket() 124 if ((ntohl(tempaddr) >> 28) == 0xe) { in rtp_socket()
|
/third_party/lwip/src/api/ |
D | sockets.c | 695 union sockaddr_aligned tempaddr; in lwip_accept() local 706 IPADDR_PORT_TO_SOCKADDR(&tempaddr, &naddr, port); in lwip_accept() 707 if (*addrlen > tempaddr.sa.sa_len) { in lwip_accept() 708 *addrlen = tempaddr.sa.sa_len; in lwip_accept() 710 MEMCPY(addr, &tempaddr, *addrlen); in lwip_accept()
|