Searched refs:hints (Results 1 – 6 of 6) sorted by relevance
/btstack/3rd-party/lwip/core/src/api/ |
H A D | netdb.c | 270 const struct addrinfo *hints, struct addrinfo **res) in lwip_getaddrinfo() argument 289 if (hints != NULL) { in lwip_getaddrinfo() 290 ai_family = hints->ai_family; in lwip_getaddrinfo() 316 if ((hints != NULL) && (hints->ai_flags & AI_NUMERICHOST)) { in lwip_getaddrinfo() 344 if ((hints != NULL) && (hints->ai_flags & AI_PASSIVE)) { in lwip_getaddrinfo() 395 if (hints != NULL) { in lwip_getaddrinfo() 397 ai->ai_socktype = hints->ai_socktype; in lwip_getaddrinfo() 398 ai->ai_protocol = hints->ai_protocol; in lwip_getaddrinfo()
|
/btstack/3rd-party/lwip/core/src/include/lwip/ |
H A D | netdb.h | 128 const struct addrinfo *hints, 140 #define getaddrinfo(nodname, servname, hints, res) \ argument 141 lwip_getaddrinfo(nodname, servname, hints, res)
|
H A D | netif.h | 392 struct netif_hint *hints; member 556 #define NETIF_SET_HINTS(netif, netifhint) (netif)->hints = (netifhint) 557 #define NETIF_RESET_HINTS(netif) (netif)->hints = NULL
|
/btstack/3rd-party/lwip/core/src/netif/ |
H A D | ethernet.c | 282 if (netif->hints && (netif->hints->tci >= 0)) { 283 vlan_prio_vid = (u16_t)netif->hints->tci;
|
/btstack/3rd-party/lwip/core/src/core/ipv4/ |
H 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;
|
/btstack/3rd-party/lwip/core/src/core/ipv6/ |
H A D | nd6.c | 1951 if (netif->hints != NULL) { in nd6_get_next_hop_entry() 1953 netif_addr_idx_t addr_hint = netif->hints->addr_hint; in nd6_get_next_hop_entry() 2014 if (netif->hints != NULL) { in nd6_get_next_hop_entry() 2016 netif->hints->addr_hint = nd6_cached_destination_index; in nd6_get_next_hop_entry()
|