Searched refs:ai (Results 1 - 9 of 9) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dgetai.c45 PRAddrInfo *ai; local
49 ai = PR_GetAddrInfoByName(argv[1], PR_AF_UNSPEC, PR_AI_ADDRCONFIG);
50 if (ai == NULL) {
55 printf("%s\n", PR_GetCanonNameFromAddrInfo(ai));
57 while ((iter = PR_EnumerateAddrInfo(iter, ai, 0, &addr)) != NULL) {
62 PR_FreeAddrInfo(ai);
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dnetdb.c233 * @param ai struct addrinfo to free
236 lwip_freeaddrinfo(struct addrinfo *ai) argument
240 while (ai != NULL) {
241 next = ai->ai_next;
242 memp_free(MEMP_NETDB, ai);
243 ai = next;
272 struct addrinfo *ai; local
315 ai = (struct addrinfo *)memp_malloc(MEMP_NETDB);
316 if (ai == NULL) {
319 memset(ai,
[all...]
/vbox/src/VBox/NetworkServices/NAT/
H A Dportfwd.c153 struct addrinfo *ai; local
167 status = getaddrinfo(src_addr_str, NULL, &hints, &ai);
172 LWIP_ASSERT1(ai != NULL);
173 LWIP_ASSERT1(ai->ai_addrlen <= sizeof(fwspec->src));
174 memcpy(&fwspec->src, ai->ai_addr, ai->ai_addrlen);
175 freeaddrinfo(ai);
176 ai = NULL;
178 status = getaddrinfo(dst_addr_str, NULL, &hints, &ai);
183 LWIP_ASSERT1(ai !
[all...]
H A Dpxdns.c350 struct addrinfo *ai; local
351 status = getaddrinfo(name, /* "domain" */ "53", &hints, &ai);
357 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6) {
359 freeaddrinfo(ai);
363 if (ai->ai_addrlen > sizeof(resolvers[nresolvers])) {
365 freeaddrinfo(ai);
369 if (ai->ai_family == AF_INET6 && pxdns->sock6 == INVALID_SOCKET) {
371 freeaddrinfo(ai);
375 memcpy(&resolvers[nresolvers], ai
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Dimports.h385 int ai, bi; local
390 __asm__ ("fstps %0" : "=m" (ai) : "t" (af) : "st");
392 return (ai - bi) >> 1;
398 int ai, bi; local
404 u.f = (float) af; ai = u.i;
406 return (ai - bi) >> 1;
432 int ai, bi; local
437 __asm__ ("fstps %0" : "=m" (ai) : "t" (af) : "st");
439 return (ai - bi + 1) >> 1;
445 int ai, b local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprnetdb.c1962 (PRADDRINFO *ai);
2043 PRAddrInfoFB *ai; local
2045 ai = PR_NEW(PRAddrInfoFB);
2046 if (!ai) {
2050 rv = PR_GetHostByName(hostname, ai->buf, sizeof ai->buf, &ai->hostent);
2052 PR_Free(ai);
2055 ai->has_cname = !(flags & PR_AI_NOCANONNAME);
2057 return (PRAddrInfo *) ai;
2114 PR_FreeAddrInfo(PRAddrInfo *ai) argument
2134 PRADDRINFO *ai; local
2175 PR_GetCanonNameFromAddrInfo(const PRAddrInfo *ai) argument
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dnetdb.h103 void lwip_freeaddrinfo(struct addrinfo *ai);
/vbox/src/VBox/Frontends/VirtualBox/src/settings/
H A DVBoxSettingsSelector.cpp660 SelectorActionItem *ai = static_cast<SelectorActionItem*> (item); local
661 if (ai->parentId() == -1 &&
662 ai->page())
663 list << ai->page();
664 else if (ai->tabWidget())
665 list << ai->tabWidget();
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...

Completed in 76 milliseconds