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

1 2 3

  /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/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...]
afhints.h 29 * The definition of outline glyph hints. These are shared by all
415 af_glyph_hints_init( AF_GlyphHints hints,
419 af_glyph_hints_rescale( AF_GlyphHints hints,
423 af_glyph_hints_reload( AF_GlyphHints hints,
427 af_glyph_hints_save( AF_GlyphHints hints,
431 af_glyph_hints_align_edge_points( AF_GlyphHints hints,
435 af_glyph_hints_align_strong_points( AF_GlyphHints hints,
439 af_glyph_hints_align_weak_points( AF_GlyphHints hints,
444 af_glyph_hints_scale_dim( AF_GlyphHints hints,
451 af_glyph_hints_done( AF_GlyphHints hints ); variable
    [all...]
  /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/mtpd/
mtpd.c 260 struct addrinfo hints = { local
271 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/skia/src/ports/
SkFontHost_ascender.cpp 54 void* hints = sk_malloc_throw(fHintStream->getLength()); local
55 memcpy(hints, fHintStream->getMemoryBase(), fHintStream->getLength());
60 hints, fHintStream->getLength());
  /system/netd/
DnsProxyListener.cpp 129 struct addrinfo* hints = NULL; local
136 hints = (struct addrinfo*) calloc(1, sizeof(struct addrinfo));
137 hints->ai_flags = ai_flags;
138 hints->ai_family = ai_family;
139 hints->ai_socktype = ai_socktype;
140 hints->ai_protocol = ai_protocol;
151 new DnsProxyListener::GetAddrInfoHandler(cli, name, service, hints);
  /bionic/libc/netbsd/resolv/
res_init.c 327 struct addrinfo hints, *ai; local
360 memset(&hints, 0, sizeof(hints));
361 hints.ai_family = PF_UNSPEC;
362 hints.ai_socktype = SOCK_DGRAM; /*dummy*/
363 hints.ai_flags = AI_NUMERICHOST;
365 if (getaddrinfo(cp, sbuf, &hints, &ai) == 0 &&
454 struct addrinfo hints, *ai; local
464 memset(&hints, 0, sizeof(hints));
    [all...]
  /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...]
  /external/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/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/ipsec-tools/
setup.c 93 struct addrinfo hints = { local
104 if (getaddrinfo(server, "500", &hints, &info) != 0) {
  /external/libpcap/
nametoaddr.c 128 struct addrinfo hints, *res; local
131 memset(&hints, 0, sizeof(hints));
132 hints.ai_family = PF_UNSPEC;
133 hints.ai_socktype = SOCK_STREAM; /*not really*/
134 hints.ai_protocol = IPPROTO_TCP; /*not really*/
135 error = getaddrinfo(name, NULL, &hints, &res);
  /external/v8/src/
platform-posix.cc 340 struct addrinfo hints; local
341 memset(&hints, 0, sizeof(addrinfo));
342 hints.ai_family = AF_INET;
343 hints.ai_socktype = SOCK_STREAM;
344 hints.ai_protocol = IPPROTO_TCP;
345 int status = getaddrinfo(host, port, &hints, &result);
  /hardware/libhardware/include/hardware/
hwcomposer.h 50 * hwc_layer_t::hints values
51 * Hints are set by the HAL and read by SurfaceFlinger
147 /* see hwc_layer_t::hints above */
148 uint32_t hints; member in struct:hwc_layer
  /external/ipsec-tools/src/racoon/
sockmisc.c 871 struct addrinfo hints, *res; local
875 memset(&hints, 0, sizeof(hints));
876 hints.ai_family = PF_UNSPEC;
877 hints.ai_socktype = SOCK_DGRAM;
878 hints.ai_flags = AI_NUMERICHOST;
879 error = getaddrinfo(host, port, &hints, &res);
  /external/bluetooth/hcidump/src/
hcidump.c 658 struct addrinfo hints; local
663 memset(&hints, 0, sizeof (hints));
664 hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
665 hints.ai_socktype = SOCK_STREAM;
666 hints.ai_protocol = IPPROTO_TCP;
668 err = getaddrinfo(dump_addr, dump_port, &hints, &ai);
  /external/chromium/net/disk_cache/
disk_format.h 187 int32 hints[4]; // Last used position for each entry type. member in struct:disk_cache::BlockFileHeader
  /external/iptables/iptables/
xtoptions.c 516 struct addrinfo hints = {.ai_family = afinfo->family}; local
521 ret = getaddrinfo(cb->arg, NULL, &hints, &res);
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11video.c 330 XWMHints *hints; local
384 hints = NULL;
387 hints = XGetWMHints(SDL_Display, WMwindow);
401 /* Set the input hints so we get keyboard input */
402 if(!hints) {
403 hints = XAllocWMHints();
404 hints->input = True;
405 hints->flags = InputHint;
407 XSetWMHints(SDL_Display, WMwindow, hints);
408 XFree(hints);
776 XSizeHints *hints; local
    [all...]

Completed in 1118 milliseconds

1 2 3