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

1 2 3 4 5

  /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...]
  /dalvik/vm/arch/mips/
HintsO32.cpp 38 * are the same for all targets, while the lower 28 are used for hints to
45 * S - if set, ignore the hints and do things the hard way (scan signature)
47 * H - target-specific hints (see below for details)
49 * This function produces mips-specific hints - specifically a description
60 * If there are too many arguments to construct valid hints, this function will
69 int stackOffset, padMask, hints; local
  /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/android-clat/
dns64.c 37 struct addrinfo hints, *result, *p; local
49 bzero(&hints, sizeof(hints));
50 hints.ai_family = AF_UNSPEC;
51 status = getaddrinfo(ipv4_name, NULL, &hints, &result);
  /external/chromium_org/third_party/freetype/src/autofit/
afloader.h 33 AF_GlyphHintsRec hints; member in struct:AF_LoaderRec_
afloader.c 33 af_glyph_hints_init( &loader->hints, memory );
35 _af_debug_hints = &loader->hints;
76 af_glyph_hints_done( &loader->hints );
104 AF_GlyphHints hints = &loader->hints; local
165 loader->pp1.x = hints->x_delta;
166 loader->pp1.y = hints->y_delta;
168 hints->x_scale ) + hints->x_delta;
169 loader->pp2.y = hints->y_delta
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
nethelpers.cc 48 struct addrinfo hints = {0}; local
50 hints.ai_family = AF_INET;
51 hints.ai_flags = AI_ADDRCONFIG;
52 int ret = getaddrinfo(hostname.c_str(), NULL, &hints, &result);
  /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/net/base/
host_resolver_proc.cc 142 struct addrinfo hints = {0}; local
146 hints.ai_family = AF_INET;
149 hints.ai_family = AF_INET6;
152 hints.ai_family = AF_UNSPEC;
156 hints.ai_family = AF_UNSPEC;
164 // Flags used in "hints" argument to getaddrinfo()
182 hints.ai_flags = 0;
184 hints.ai_flags = AI_ADDRCONFIG;
191 hints.ai_flags &= ~AI_ADDRCONFIG;
194 hints.ai_flags |= AI_CANONNAME
    [all...]
  /external/chromium/net/tools/flip_server/
create_listener.cc 120 struct addrinfo hints; local
121 memset(&hints, 0, sizeof(hints));
124 hints.ai_flags = AI_NUMERICHOST; // iff you know the name is numeric.
126 hints.ai_flags |= AI_PASSIVE;
128 hints.ai_family = PF_INET;
129 hints.ai_socktype = SOCK_STREAM;
132 if ((err=getaddrinfo(node, service, &hints, &results))) {
244 struct addrinfo hints; local
245 memset(&hints, 0, sizeof(hints))
    [all...]
  /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 120 struct addrinfo hints; local
121 memset(&hints, 0, sizeof(hints));
124 hints.ai_flags = AI_NUMERICHOST; // iff you know the name is numeric.
126 hints.ai_flags |= AI_PASSIVE;
128 hints.ai_family = PF_INET;
129 hints.ai_socktype = SOCK_STREAM;
132 if ((err=getaddrinfo(node, service, &hints, &results))) {
244 struct addrinfo hints; local
245 memset(&hints, 0, sizeof(hints))
    [all...]
  /external/openssh/
dns.c 147 struct addrinfo hints, *ai; local
158 memset(&hints, 0, sizeof(hints));
159 hints.ai_socktype = SOCK_DGRAM;
160 hints.ai_flags = AI_NUMERICHOST;
162 if (getaddrinfo(hostname, NULL, &hints, &ai) == 0) {
  /external/chromium_org/net/disk_cache/
disk_format_base.h 56 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);
  /bionic/libc/netbsd/resolv/
res_init.c 342 struct addrinfo hints, *ai; local
352 memset(&hints, 0, sizeof(hints));
353 hints.ai_family = PF_UNSPEC;
354 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
355 hints.ai_flags = AI_NUMERICHOST;
357 if (getaddrinfo(cp, sbuf, &hints, &ai) == 0 &&
  /external/chromium_org/media/audio/linux/
alsa_output.cc 518 // Constants specified by the ALSA API for device hints.
529 void** hints = NULL; local
532 &hints);
535 // hints above need to be freed.
536 for (void** hint_iter = hints; *hint_iter != NULL; hint_iter++) {
554 wrapper_->DeviceNameFreeHint(hints);
555 hints = NULL;
557 LOG(ERROR) << "Unable to get hints for devices: "
audio_manager_linux.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(hints, device_names);
133 // Destroy the hints now that we're done with it.
134 wrapper_->DeviceNameFreeHint(hints);
136 DLOG(WARNING) << "GetAudioInputDevices: unable to get device hints: "
143 void** hints, media::AudioDeviceNames* device_names) {
149 for (void** hint_iter = hints; *hint_iter != NULL; hint_iter++)
218 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 241 struct addrinfo hints; local
243 memset(&hints, 0, sizeof(hints));
244 hints.ai_family = AF_UNSPEC;
245 hints.ai_socktype = SOCK_STREAM;
246 hints.ai_flags |= AI_CANONNAME;
248 int errcode = getaddrinfo(host.c_str(), NULL, &hints, &res);
  /external/dropbear/
dbutil.c 189 struct addrinfo hints, *res = NULL, *res0 = NULL; local
198 memset(&hints, 0, sizeof(hints));
199 hints.ai_family = AF_UNSPEC; /* TODO: let them flag v4 only etc */
200 hints.ai_socktype = SOCK_STREAM;
213 hints.ai_flags = AI_PASSIVE;
215 err = getaddrinfo(address, port, &hints, &res0);
306 struct addrinfo *res0 = NULL, *res = NULL, hints; local
316 memset(&hints, 0, sizeof(hints));
    [all...]

Completed in 4854 milliseconds

1 2 3 4 5