Searched refs:hints (Results 1 – 9 of 9) sorted by relevance
| /lib/mbedtls/external/mbedtls/library/ |
| A D | net_sockets.c | 162 struct addrinfo hints, *addr_list, *cur; in mbedtls_net_connect() local 169 memset(&hints, 0, sizeof(hints)); in mbedtls_net_connect() 170 hints.ai_family = AF_UNSPEC; in mbedtls_net_connect() 171 hints.ai_socktype = proto == MBEDTLS_NET_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM; in mbedtls_net_connect() 174 if (getaddrinfo(host, port, &hints, &addr_list) != 0) { in mbedtls_net_connect() 208 struct addrinfo hints, *addr_list, *cur; in mbedtls_net_bind() local 215 memset(&hints, 0, sizeof(hints)); in mbedtls_net_bind() 216 hints.ai_family = AF_UNSPEC; in mbedtls_net_bind() 217 hints.ai_socktype = proto == MBEDTLS_NET_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM; in mbedtls_net_bind() 220 hints.ai_flags = AI_PASSIVE; in mbedtls_net_bind() [all …]
|
| /lib/lwip/lwip/src/api/ |
| A D | netdb.c | 274 const struct addrinfo *hints, struct addrinfo **res) in lwip_getaddrinfo() argument 293 if (hints != NULL) { in lwip_getaddrinfo() 294 ai_family = hints->ai_family; in lwip_getaddrinfo() 324 if ((hints != NULL) && (hints->ai_flags & AI_NUMERICHOST)) { in lwip_getaddrinfo() 352 if ((hints != NULL) && (hints->ai_flags & AI_PASSIVE)) { in lwip_getaddrinfo() 403 if (hints != NULL) { in lwip_getaddrinfo() 405 ai->ai_socktype = hints->ai_socktype; in lwip_getaddrinfo() 406 ai->ai_protocol = hints->ai_protocol; in lwip_getaddrinfo()
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | netdb.h | 128 const struct addrinfo *hints, 140 #define getaddrinfo(nodname, servname, hints, res) \ argument 141 lwip_getaddrinfo(nodname, servname, hints, res)
|
| A D | netif.h | 392 struct netif_hint *hints; member 566 #define NETIF_SET_HINTS(netif, netifhint) (netif)->hints = (netifhint) 567 #define NETIF_RESET_HINTS(netif) (netif)->hints = NULL
|
| /lib/lwip/lwip/src/netif/ |
| A D | ethernet.c | 282 if (netif->hints && (netif->hints->tci >= 0)) { 283 vlan_prio_vid = (u16_t)netif->hints->tci;
|
| /lib/lwip/lwip/src/core/ipv4/ |
| A D | etharp.c | 121 #define ETHARP_SET_ADDRHINT(netif, addrhint) do { if (((netif) != NULL) && ((netif)->hints != NULL… 122 (netif)->hints->addr_hint = (addrhint); }} while(0) 857 if (netif->hints != NULL) { 859 netif_addr_idx_t etharp_cached_entry = netif->hints->addr_hint;
|
| /lib/lwip/lwip/src/core/ipv6/ |
| A D | nd6.c | 1963 if (netif->hints != NULL) { in nd6_get_next_hop_entry() 1965 netif_addr_idx_t addr_hint = netif->hints->addr_hint; in nd6_get_next_hop_entry() 2029 if (netif->hints != NULL) { in nd6_get_next_hop_entry() 2031 netif->hints->addr_hint = nd6_cached_destination_index; in nd6_get_next_hop_entry()
|
| /lib/lzma/ |
| A D | lzma.txt | 255 Compression ratio hints
|
| /lib/mbedtls/external/mbedtls/ |
| A D | ChangeLog | 1101 * Add accessors to configure DN hints for certificate request:
|
Completed in 41 milliseconds