HomeSort by relevance Sort by last modified time
    Searched defs:hints (Results 1 - 25 of 217) sorted by null

1 2 3 4 5 6 7 8 9

  /external/android-clat/
dns64.c 39 const struct addrinfo hints = { local
49 status = android_getaddrinfofornet(ipv4_name, NULL, &hints, net_id, MARK_UNSET, &result);
  /external/clang/test/CodeGen/
builtins-arm64.c 18 void hints() { function
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
DecodeThread.java 40 private final Hashtable<DecodeHintType,Object> hints; field in class:DecodeThread
51 hints = new Hashtable<DecodeHintType,Object>();
54 hints.put(DecodeHintType.POSSIBLE_FORMATS, formats);
57 hints.put(DecodeHintType.CHARACTER_SET, characterSet);
59 hints.put(DecodeHintType.NEED_RESULT_POINT_CALLBACK, resultPointCallback);
74 handler = new DecodeHandler(activity, hints);
  /external/freetype/src/autofit/
afloader.h 44 AF_GlyphHints hints; member in struct:AF_LoaderRec_
58 AF_GlyphHints hints );
afmodule.c 29 af_glyph_hints_dump_segments( AF_GlyphHints hints,
32 af_glyph_hints_dump_points( AF_GlyphHints hints,
35 af_glyph_hints_dump_edges( AF_GlyphHints hints,
330 AF_GlyphHints hints = _af_debug_hints_rec; local
336 if ( hints->memory )
337 af_glyph_hints_done( hints );
339 af_glyph_hints_init( hints, memory );
340 af_loader_init( loader, hints );
345 af_glyph_hints_dump_points( hints, 0 );
346 af_glyph_hints_dump_segments( hints, 0 )
    [all...]
afloader.c 31 AF_GlyphHints hints )
35 loader->hints = hints;
75 loader->hints = NULL;
94 AF_GlyphHints hints = loader->hints; local
131 loader->pp1.x = hints->x_delta;
132 loader->pp1.y = hints->y_delta;
134 hints->x_scale ) + hints->x_delta
    [all...]
  /external/toybox/toys/other/
nbd_client.c 52 struct addrinfo hints; local
56 memset(&hints, 0, sizeof(hints));
57 hints.ai_family = PF_UNSPEC;
58 hints.ai_socktype = SOCK_STREAM;
59 if (getaddrinfo(host, port, &hints, &addr)) addr = 0;
  /bionic/tests/
netdb_test.cpp 81 addrinfo hints; local
82 memset(&hints, 0, sizeof(hints));
83 hints.ai_family = AF_INET;
84 hints.ai_socktype = SOCK_STREAM;
85 hints.ai_protocol = IPPROTO_TCP;
88 ASSERT_EQ(0, getaddrinfo( "localhost", "9999", &hints, &ai));
  /external/mtpd/
mtpd.c 263 struct addrinfo hints = { local
274 error = getaddrinfo(server, port, &hints, &records);
  /external/netperf/
netserver.c 434 struct addrinfo hints; local
461 memset(&hints,0,sizeof(hints));
462 hints.ai_family = af;
463 hints.ai_socktype = SOCK_STREAM;
464 hints.ai_protocol = IPPROTO_TCP;
465 hints.ai_flags = AI_PASSIVE;
471 &hints,
  /external/opencv/otherlibs/highgui/
cvcap_socket.cpp 124 struct addrinfo hints; local
125 memset(&hints, 0, sizeof hints);
126 hints.ai_family = AF_UNSPEC; // use IPv4 or IPv6, whichever
127 hints.ai_socktype = SOCK_STREAM;
128 hints.ai_flags = AI_NUMERICHOST;
130 int error = getaddrinfo(_address, _port, &hints, &pAddrInfo);
  /external/openssh/
dns.c 176 struct addrinfo hints, *ai; local
187 memset(&hints, 0, sizeof(hints));
188 hints.ai_socktype = SOCK_DGRAM;
189 hints.ai_flags = AI_NUMERICHOST;
191 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
addrmatch.c 209 struct addrinfo hints, *ai; local
211 memset(&hints, '\0', sizeof(hints));
212 hints.ai_flags = AI_NUMERICHOST;
214 if (p == NULL || getaddrinfo(p, NULL, &hints, &ai) != 0)
canohost.c 52 struct addrinfo hints, *ai, *aitop; local
91 memset(&hints, 0, sizeof(hints));
92 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
93 hints.ai_flags = AI_NUMERICHOST;
94 if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
113 memset(&hints, 0, sizeof(hints));
114 hints.ai_family = from.ss_family;
115 hints.ai_socktype = SOCK_STREAM
    [all...]
  /system/netd/server/
NetdConstants.cpp 172 addrinfo hints = { local
175 int ret = getaddrinfo(addressString.c_str(), NULL, &hints, &res);
  /cts/tests/tests/telecom/src/android/telecom/cts/
DataObjectUnitTests.java 206 StatusHints hints = new StatusHints( local
210 assertEquals(label, hints.getLabel());
211 assertEquals(icon.toString(), hints.getIcon().toString());
214 hints.getExtras().getString(TelecomManager.GATEWAY_PROVIDER_PACKAGE));
215 assertEquals(0, hints.describeContents());
220 hints.writeToParcel(p, 0);
230 // assertEquals(hints, parcelHints);
  /bionic/libc/dns/resolv/
res_init.c 353 struct addrinfo hints, *ai; local
363 memset(&hints, 0, sizeof(hints));
364 hints.ai_family = PF_UNSPEC;
365 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
366 hints.ai_flags = AI_NUMERICHOST;
368 if (getaddrinfo(cp, sbuf, &hints, &ai) == 0 &&
  /external/freetype/include/internal/
pshints.h 5 /* Interface to Postscript-specific (Type 1 and Type 2) hints */
7 /* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */
71 /***** PUBLIC TYPE 1 HINTS RECORDER *****/
82 * This is a handle to an opaque structure used to record glyph hints
86 * @T1_Hints_FuncsRec structure. Recording glyph hints is normally
97 * returns an error code if the hints were invalid or something
100 * The hints accumulated in the object can later be used by the
127 * hints recording session.
130 * hints ::
131 * A handle to the Type 1 hints recorder
344 T1_Hints hints; member in struct:T1_Hints_FuncsRec_
658 T2_Hints hints; member in struct:T2_Hints_FuncsRec_
    [all...]
  /external/freetype/src/pshinter/
pshrec.h 5 /* Postscript (Type1/Type2) hints recorder (specification). */
22 /* font drivers to record the hints of a given character/glyph. */
24 /* The hints are recorded in a unified format, and are later processed */
46 /***** GLYPH HINTS RECORDER INTERNALS *****/
83 /* hints table descriptor */
88 PS_Hint hints; member in struct:PS_Hint_TableRec_
114 /* dimension-specific hints descriptor */
117 PS_Hint_TableRec hints; member in struct:PS_DimensionRec_
124 /* glyph hints descriptor */
125 /* dimension 0 => X coordinates + vertical hints/stems *
146 ps_hints_done( PS_Hints hints ); variable
    [all...]
  /external/ipsec-tools/
setup.c 89 struct addrinfo hints = { local
100 if (getaddrinfo(server, "500", &hints, &info) != 0) {
  /external/libpcap/
nametoaddr.c 126 struct addrinfo hints, *res; local
129 memset(&hints, 0, sizeof(hints));
130 hints.ai_family = PF_UNSPEC;
131 hints.ai_socktype = SOCK_STREAM; /*not really*/
132 hints.ai_protocol = IPPROTO_TCP; /*not really*/
133 error = getaddrinfo(name, NULL, &hints, &res);
  /external/libvncserver/libvncclient/
sockets.c 346 struct addrinfo hints, *res, *ressave; local
354 memset(&hints, 0, sizeof(struct addrinfo));
355 hints.ai_family = AF_UNSPEC;
356 hints.ai_socktype = SOCK_STREAM;
357 if ((n = getaddrinfo(hostname, port_s, &hints, &res)))
525 struct addrinfo hints, *servinfo, *p; local
530 memset(&hints, 0, sizeof(hints));
531 hints.ai_family = AF_UNSPEC;
532 hints.ai_socktype = SOCK_STREAM
    [all...]
  /external/libvncserver/libvncserver/
sockets.c 871 struct addrinfo hints, *servinfo, *p;
876 memset(&hints, 0, sizeof(hints));
877 hints.ai_family = AF_INET6;
878 hints.ai_socktype = SOCK_STREAM;
879 hints.ai_flags = AI_PASSIVE; /* fill in wildcard address if iface == NULL */
881 if ((rv = getaddrinfo(iface, port_str, &hints, &servinfo)) != 0) {
943 struct addrinfo hints, *servinfo, *p; local
949 memset(&hints, 0, sizeof hints);
    [all...]
  /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/pdfium/third_party/freetype/include/internal/
pshints.h 5 /* Interface to Postscript-specific (Type 1 and Type 2) hints */
7 /* T1/T2 hints in the `type1', `cid', and `cff' font drivers. */
71 /***** PUBLIC TYPE 1 HINTS RECORDER *****/
82 * This is a handle to an opaque structure used to record glyph hints
86 * @T1_Hints_FuncsRec structure. Recording glyph hints is normally
97 * returns an error code if the hints were invalid or something
100 * The hints accumulated in the object can later be used by the
127 * hints recording session.
130 * hints ::
131 * A handle to the Type 1 hints recorder
344 T1_Hints hints; member in struct:T1_Hints_FuncsRec_
658 T2_Hints hints; member in struct:T2_Hints_FuncsRec_
    [all...]

Completed in 856 milliseconds

1 2 3 4 5 6 7 8 9