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

1 2 3 4 5 6

  /external/android-clat/
dns64.c 39 const struct addrinfo hints = { local
49 status = android_getaddrinfofornet(ipv4_name, NULL, &hints, net_id, MARK_UNSET, &result);
  /system/extras/tests/bionic/libc/common/
test_getaddrinfo.c 2 * without a 'hints' argument
18 struct addrinfo hints; local
22 /* first, try without any hints */
31 /* now try with the hints */
32 memset(&hints, 0, sizeof(hints));
33 hints.ai_family = AF_UNSPEC;
34 hints.ai_socktype = SOCK_STREAM;
35 hints.ai_protocol = IPPROTO_TCP;
37 ret = getaddrinfo( SERVER_NAME, PORT_NUMBER, &hints, &res )
    [all...]
  /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/chromium_org/third_party/freetype/src/autofit/
afloader.h 46 AF_GlyphHintsRec hints; member in struct:AF_LoaderRec_
afloader.c 37 af_glyph_hints_init( &loader->hints, memory );
39 _af_debug_hints = &loader->hints;
84 af_glyph_hints_done( &loader->hints );
112 AF_GlyphHints hints = &loader->hints; local
171 loader->pp1.x = hints->x_delta;
172 loader->pp1.y = hints->y_delta;
174 hints->x_scale ) + hints->x_delta;
175 loader->pp2.y = hints->y_delta
    [all...]
  /external/freetype/src/autofit/
afloader.h 46 AF_GlyphHintsRec hints; member in struct:AF_LoaderRec_
  /external/oprofile/libpp/
profile_container.h 90 : hints(cf_none), threshold(0.0), match_image(false) {}
92 /// hints filled in
93 column_flags hints; member in struct:profile_container::symbol_choice
176 * Optimization hints for what information we are going to need,
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
fake_host_resolver_interface.cc 22 PP_HostResolver_Hint hints; member in class:__anon12978::FakeHostResolverResource
52 const PP_HostResolver_Hint* hints,
57 resolver->hints = *hints;
81 if (res->hints.family == PP_NETADDRESS_FAMILY_IPV6 ||
82 res->hints.family == PP_NETADDRESS_FAMILY_UNSPECIFIED)
85 if (res->hints.family == PP_NETADDRESS_FAMILY_IPV4 ||
86 res->hints.family == PP_NETADDRESS_FAMILY_UNSPECIFIED)
101 switch (res->hints.family) {
  /external/chromium_org/net/dns/
host_resolver_proc.cc 131 struct addrinfo hints = {0}; local
135 hints.ai_family = AF_INET;
138 hints.ai_family = AF_INET6;
141 hints.ai_family = AF_UNSPEC;
145 hints.ai_family = AF_UNSPEC;
153 // Flags used in "hints" argument to getaddrinfo()
171 hints.ai_flags = 0;
173 hints.ai_flags = AI_ADDRCONFIG;
180 hints.ai_flags &= ~AI_ADDRCONFIG;
183 hints.ai_flags |= AI_CANONNAME
    [all...]
  /external/chromium_org/net/tools/flip_server/
create_listener.cc 112 struct addrinfo hints; local
113 memset(&hints, 0, sizeof(hints));
116 hints.ai_flags = AI_NUMERICHOST; // iff you know the name is numeric.
118 hints.ai_flags |= AI_PASSIVE;
120 hints.ai_family = PF_INET;
121 hints.ai_socktype = SOCK_STREAM;
124 if ((err = getaddrinfo(node, service, &hints, &results))) {
242 struct addrinfo hints; local
243 memset(&hints, 0, sizeof(hints))
    [all...]
  /external/chromium_org/chrome/test/chromedriver/net/
websocket.cc 34 struct addrinfo hints; local
35 memset(&hints, 0, sizeof(hints));
36 hints.ai_family = AF_UNSPEC;
37 hints.ai_socktype = SOCK_STREAM;
40 if (getaddrinfo(host.c_str(), NULL, &hints, &result))
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
host_resolver.cc 24 void HintsToPPHints(const addrinfo* hints, PP_HostResolver_Hint* pp_hints) {
27 if (hints->ai_family == AF_INET)
29 else if (hints->ai_family == AF_INET6)
32 if (hints->ai_flags & AI_CANONNAME)
36 void CreateAddrInfo(const addrinfo* hints,
44 if (hints && hints->ai_socktype)
45 ai->ai_socktype = hints->ai_socktype;
49 if (hints && hints->ai_protocol
107 struct addrinfo hints; local
248 const struct addrinfo* hints = hints_in ? hints_in : &default_hints; local
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
host_resolver_test.cc 90 struct addrinfo hints; local
93 memset(&hints, 0, sizeof(hints));
94 hints.ai_family = AF_INET;
95 hints.ai_socktype = SOCK_STREAM;
98 ASSERT_EQ(0, ki_getaddrinfo("1.2.3.4", NULL, &hints, &ai));
113 struct addrinfo hints; local
115 memset(&hints, 0, sizeof(hints));
116 hints.ai_family = AF_INET
148 struct addrinfo hints; local
194 struct addrinfo hints; local
246 struct addrinfo hints; local
268 struct addrinfo hints; local
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
disk_format_base.h 58 int32 hints[4]; // Last used position for each entry type. member in struct:disk_cache::BlockFileHeader
  /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);
  /system/netd/server/
NetdConstants.cpp 204 addrinfo hints = { local
207 int ret = getaddrinfo(addressString.c_str(), NULL, &hints, &res);
  /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/chromium_org/media/audio/alsa/
alsa_output.cc 517 // Constants specified by the ALSA API for device hints.
528 void** hints = NULL; local
531 &hints);
534 // hints above need to be freed.
535 for (void** hint_iter = hints; *hint_iter != NULL; hint_iter++) {
553 wrapper_->DeviceNameFreeHint(hints);
554 hints = NULL;
556 LOG(ERROR) << "Unable to get hints for devices: "
audio_manager_alsa.cc 122 // Constants specified by the ALSA API for device hints.
126 // Loop through the sound cards to get ALSA device hints.
128 void** hints = NULL; local
129 int error = wrapper_->DeviceNameHint(card, kPcmInterfaceName, &hints);
131 GetAlsaDevicesInfo(type, hints, device_names);
133 // Destroy the hints now that we're done with it.
134 wrapper_->DeviceNameFreeHint(hints);
136 DLOG(WARNING) << "GetAlsaAudioDevices: unable to get device hints: "
144 void** hints,
152 for (void** hint_iter = hints; *hint_iter != NULL; hint_iter++)
242 void** hints = NULL; local
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/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/chromium_org/third_party/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 *****/
87 /* hints table descriptor */
92 PS_Hint hints; member in struct:PS_Hint_TableRec_
118 /* dimension-specific hints descriptor */
121 PS_Hint_TableRec hints; member in struct:PS_DimensionRec_
128 /* glyph hints descriptor */
129 /* dimension 0 => X coordinates + vertical hints/stems *
150 ps_hints_done( PS_Hints hints ); variable
    [all...]
  /external/chromium_org/tools/android/forwarder2/
socket.cc 254 struct addrinfo hints; local
256 memset(&hints, 0, sizeof(hints));
257 hints.ai_family = AF_UNSPEC;
258 hints.ai_socktype = SOCK_STREAM;
259 hints.ai_flags |= AI_CANONNAME;
261 int errcode = getaddrinfo(host.c_str(), NULL, &hints, &res);
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_window_tree_host_x11_unittest.cc 57 std::vector<Atom> hints; variable
58 if (ui::GetAtomArrayProperty(xwindow(), "_NET_WM_STATE", &hints)) {
60 hints.begin(),
61 hints.end(),
63 bool hint_set = (it != hints.end());

Completed in 887 milliseconds

1 2 3 4 5 6