Lines Matching refs:SlNetUtil_addrInfo_t
57 #define SLNETUTIL_ADDRINFO_ALLOCSZ ((sizeof(SlNetUtil_addrInfo_t)) + \
85 static SlNetUtil_addrInfo_t *setAddrInfo(uint16_t ifID, SlNetSock_Addr_t *addr,
86 int family, const char *service, const SlNetUtil_addrInfo_t *hints);
88 static SlNetUtil_addrInfo_t *createAddrInfo(uint16_t ifID,
92 static int mergeLists(SlNetUtil_addrInfo_t **curList,
93 SlNetUtil_addrInfo_t **newList);
242 const char *service, const struct SlNetUtil_addrInfo_t *hints, in SlNetUtil_getAddrInfo()
243 struct SlNetUtil_addrInfo_t **res) in SlNetUtil_getAddrInfo()
256 SlNetUtil_addrInfo_t *ai = NULL; in SlNetUtil_getAddrInfo()
257 SlNetUtil_addrInfo_t *aiTmp = NULL; in SlNetUtil_getAddrInfo()
278 static const SlNetUtil_addrInfo_t defHints = { in SlNetUtil_getAddrInfo()
662 void SlNetUtil_freeAddrInfo(struct SlNetUtil_addrInfo_t *res) in SlNetUtil_freeAddrInfo()
664 SlNetUtil_addrInfo_t *aiTmp; in SlNetUtil_freeAddrInfo()
681 static SlNetUtil_addrInfo_t *setAddrInfo(uint16_t ifID, SlNetSock_Addr_t *addr, in setAddrInfo()
683 const SlNetUtil_addrInfo_t *hints) in setAddrInfo()
685 SlNetUtil_addrInfo_t *ai = NULL; in setAddrInfo()
686 SlNetUtil_addrInfo_t *aiTmp = NULL; in setAddrInfo()
721 static SlNetUtil_addrInfo_t *createAddrInfo(uint16_t ifID, in createAddrInfo()
725 SlNetUtil_addrInfo_t *ai = NULL; in createAddrInfo()
734 ai = (SlNetUtil_addrInfo_t *)calloc(1, SLNETUTIL_ADDRINFO_ALLOCSZ); in createAddrInfo()
792 static int mergeLists(SlNetUtil_addrInfo_t **curList, in mergeLists()
793 SlNetUtil_addrInfo_t **newList) in mergeLists()
796 SlNetUtil_addrInfo_t *tail = NULL; in mergeLists()