HomeSort by relevance Sort by last modified time
    Searched refs:hints (Results 151 - 175 of 635) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libcups/cups/
http-addrlist.c 545 struct addrinfo hints, /* Address lookup hints */ local
558 memset(&hints, 0, sizeof(hints));
559 hints.ai_family = family;
560 hints.ai_flags = hostname ? 0 : AI_PASSIVE;
561 hints.ai_socktype = SOCK_STREAM;
604 if ((error = getaddrinfo(hostname, service, &hints, &results)) == 0)
  /system/core/libnetutils/
ifc_utils.c 100 struct addrinfo hints, *ai; local
107 memset(&hints, 0, sizeof(hints));
108 hints.ai_family = AF_UNSPEC;
109 hints.ai_flags = AI_NUMERICHOST;
110 hints.ai_socktype = SOCK_DGRAM;
112 ret = getaddrinfo(string, NULL, &hints, &ai);
  /external/fonttools/Lib/fontTools/
subset.py     [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getaddrinfo.c 261 "Invalid value for hints", /* EAI_BADHINTS */
355 const struct addrinfo *hints, struct addrinfo **res)
368 /* hints is allowed to be NULL */
387 if (hints) {
388 /* error check for hints */
389 if (hints->ai_addrlen || hints->ai_canonname ||
390 hints->ai_addr || hints->ai_next)
392 if (hints->ai_flags & ~AI_MASK)
1436 struct addrinfo hints, *res0, *res; local
1534 struct addrinfo hints, *res, *res0; local
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
ConferenceTest.java 193 StatusHints hints = new StatusHints("Test", null, null); local
195 mConferenceObject.setStatusHints(hints);
196 assertCallStatusHints(conf, hints);
511 private void assertCallStatusHints(final Call call, final StatusHints hints) {
516 return hints;
525 "Call should have status hints " + hints
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 91 struct addrinfo hints, *res0; local
136 memset(&hints, 0, sizeof(hints));
137 hints.ai_family = AF_INET6;
138 hints.ai_flags = AI_NUMERICHOST;
139 err = getaddrinfo(addr6, NULL, &hints, &res0);
  /external/libevent/
util-internal.h 303 /* Evaluates to the same boolean value as 'p', and hints to the compiler that
366 ev_socklen_t socklen, const struct evutil_addrinfo *hints);
369 void evutil_adjust_hints_for_addrconfig_(struct evutil_addrinfo *hints);
371 struct evutil_addrinfo *hints, struct evutil_addrinfo **res, int *portnum);
  /external/libpcap/
scanner.l 399 struct addrinfo hints, *res;
400 memset(&hints, 0, sizeof(hints));
401 hints.ai_family = AF_INET6;
402 hints.ai_flags = AI_NUMERICHOST;
403 if (getaddrinfo(yytext, NULL, &hints, &res))
sockutils.h 211 struct addrinfo *hints, struct addrinfo **addrinfo,
  /libcore/ojluni/src/main/java/java/net/
InetAddress.java 1627 StructAddrinfo hints = new StructAddrinfo(); local
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
resolve_op.hpp 75 o->query_.hints(), &o->addrinfo_, o->ec_);
resolver_service.hpp 60 query.service_name().c_str(), query.hints(), &address_info, ec);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_query.hpp 212 /// Get the hints associated with the query.
213 const asio::detail::addrinfo_type& hints() const function in class:asio::ip::basic_resolver_query
  /external/pdfium/fxbarcode/oned/
BC_OneDimWriter.h 54 int32_t hints);
  /external/skia/gm/
readpixels.cpp 256 const SkImage::CachingHint hints[] = { variable
266 for (SkImage::CachingHint hint : hints) {
322 const SkImage::CachingHint hints[] = { variable
332 for (SkImage::CachingHint hint : hints) {
  /external/skqp/gm/
readpixels.cpp 255 const SkImage::CachingHint hints[] = { variable
265 for (SkImage::CachingHint hint : hints) {
321 const SkImage::CachingHint hints[] = { variable
331 for (SkImage::CachingHint hint : hints) {
  /external/toybox/toys/net/
netstat.c 64 struct addrinfo hints, *result, *rp; local
67 memset(&hints, 0, sizeof(struct addrinfo));
68 hints.ai_family = af;
70 if (!getaddrinfo(buf, NULL, &hints, &result)) {
  /external/toybox/toys/pending/
route.c 100 struct addrinfo hints, *result; local
103 memset(&hints, 0, sizeof(struct addrinfo));
104 hints.ai_family = AF_INET6;
105 if ((status = getaddrinfo(ip, NULL, &hints, &result))) {
  /external/webrtc/webrtc/sound/
alsasoundsystem.cc 541 void **hints; local
544 &hints);
550 for (void **list = hints; *list != NULL; ++list) {
593 err = symbol_table_.snd_device_name_free_hint()(hints);
  /hardware/libhardware/include/hardware/
hwcomposer.h 119 * hints is bit mask set by the HWC implementation during (*prepare)().
123 * see hwc_layer_t::hints
125 uint32_t hints; member in struct:hwc_layer_1
505 * and hints are preserved between (*prepare)() calles unless the
512 * compositionType and hints are reset to their default value.
    [all...]
  /libcore/ojluni/src/main/native/
net_util_md.h 88 const struct addrinfo *hints, struct addrinfo **res);
  /system/netd/server/
DnsProxyListener.cpp 257 SocketClient *c, char* host, char* service, struct addrinfo* hints,
263 mHints(hints),
474 struct addrinfo* hints = NULL; local
491 hints = (struct addrinfo*) calloc(1, sizeof(struct addrinfo));
492 hints->ai_flags = ai_flags;
493 hints->ai_family = ai_family;
494 hints->ai_socktype = ai_socktype;
495 hints->ai_protocol = ai_protocol;
510 new DnsProxyListener::GetAddrInfoHandler(cli, name, service, hints, netcontext,
  /external/freetype/src/autofit/
aftypes.h 153 /* opaque handle to glyph-specific hints -- see `afhints.h' for more
221 (*AF_WritingSystem_InitHintsFunc)( AF_GlyphHints hints,
226 AF_GlyphHints hints,
  /external/freetype/src/psaux/
t1decode.c 481 /* begin hints recording session, if any */
483 hinter->open( hinter->hints );
858 case 3: /* change hints */
865 hinter->reset( hinter->hints,
871 /* counter control hints, clear stack */
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_cmd.c 478 swc->hints |= SVGA_HINT_FLAG_CAN_PRE_FLUSH;
549 swc->hints |= SVGA_HINT_FLAG_CAN_PRE_FLUSH;
1023 swc->hints |= SVGA_HINT_FLAG_CAN_PRE_FLUSH;
    [all...]

Completed in 907 milliseconds

1 2 3 4 5 67 8 91011>>