/system/core/libnetutils/ |
ifc_utils.c | 96 struct addrinfo hints, *ai; local 103 memset(&hints, 0, sizeof(hints)); 104 hints.ai_family = AF_UNSPEC; 105 hints.ai_flags = AI_NUMERICHOST; 106 hints.ai_socktype = SOCK_DGRAM; 108 ret = getaddrinfo(string, NULL, &hints, &ai); 873 struct addrinfo hints, *addr_ai, *gw_ai; local 875 memset(&hints, 0, sizeof(hints)); [all...] |
/external/v8/src/ |
platform-posix.cc | 446 struct addrinfo hints; local 447 memset(&hints, 0, sizeof(addrinfo)); 448 hints.ai_family = AF_INET; 449 hints.ai_socktype = SOCK_STREAM; 450 hints.ai_protocol = IPPROTO_TCP; 451 int status = getaddrinfo(host, port, &hints, &result);
|
/external/chromium_org/third_party/freetype/src/autofit/ |
aftypes.h | 152 /* opaque handle to glyph-specific hints -- see `afhints.h' for more 274 (*AF_Script_InitHintsFunc)( AF_GlyphHints hints, 278 (*AF_Script_ApplyHintsFunc)( AF_GlyphHints hints,
|
/external/freetype/src/autofit/ |
aftypes.h | 153 /* opaque handle to glyph-specific hints -- see `afhints.h' for more 278 (*AF_Script_InitHintsFunc)( AF_GlyphHints hints, 282 (*AF_Script_ApplyHintsFunc)( AF_GlyphHints hints,
|
/external/oprofile/libpp/ |
diff_container.cpp | 55 choice.hints = sym.output_hint(choice.hints);
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InjectedScriptExterns.js | 80 * @param {Object} hints 82 InjectedScriptHostClass.prototype.inspect = function(object, hints) { }
|
/system/netd/ |
DnsProxyListener.h | 43 // Note: All of host, service, and hints may be NULL 47 struct addrinfo* hints,
|
/external/libpcap/ |
scanner.l | 317 struct addrinfo hints, *res; 318 memset(&hints, 0, sizeof(hints)); 319 hints.ai_family = AF_INET6; 320 hints.ai_flags = AI_NUMERICHOST; 321 if (getaddrinfo(yytext, NULL, &hints, &res))
|
/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 &&
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NavigationBarView.java | 315 public void setNavigationIconHints(int hints) { 316 setNavigationIconHints(hints, false); 319 public void setNavigationIconHints(int hints, boolean force) { 320 if (!force && hints == mNavigationIconHints) return; 321 final boolean backAlt = (hints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0; 327 "Navigation icon hints = " + hints, 331 mNavigationIconHints = hints;
|
/external/tcpdump/missing/ |
getaddrinfo.c | 206 "Invalid value for hints", /* EAI_BADHINTS */ 289 getaddrinfo(hostname, servname, hints, res) 291 const struct addrinfo *hints; 329 if (hints) { 330 /* error check for hints */ 331 if (hints->ai_addrlen || hints->ai_canonname || 332 hints->ai_addr || hints->ai_next) 334 if (hints->ai_flags & ~AI_MASK [all...] |
/external/chromium_org/chrome/browser/ui/gtk/apps/ |
native_app_window_gtk.cc | 96 GdkGeometry hints; local 99 hints.min_height = min_height; 100 hints.min_width = min_width; 104 hints.max_height = max_height ? max_height : G_MAXINT; 105 hints.max_width = max_width ? max_width : G_MAXINT; 112 &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/openssh/ |
ssh-keyscan.c | 291 struct addrinfo hints, *ai, *aitop; local 296 memset(&hints, 0, sizeof(hints)); 297 hints.ai_family = IPv4or6; 298 hints.ai_socktype = SOCK_STREAM; 299 if ((gaierr = getaddrinfo(host, strport, &hints, &aitop)) != 0)
|
/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/chromium_org/third_party/libjingle/source/talk/sound/ |
alsasoundsystem.cc | 556 void **hints; local 559 &hints); 565 for (void **list = hints; *list != NULL; ++list) { 609 err = symbol_table_.snd_device_name_free_hint()(hints);
|
/hardware/libhardware/include/hardware/ |
hwcomposer.h | 128 * hints is bit mask set by the HWC implementation during (*prepare)(). 132 * see hwc_layer_t::hints 134 uint32_t hints; member in struct:hwc_layer_1 454 * compositionType and hints are preserved between (*prepare)() calles 461 * compositionType and hints are reset to their default value.
|
/external/chromium_org/third_party/freetype/src/psaux/ |
t1decode.c | 417 /* begin hints recording session, if any */ 419 hinter->open( hinter->hints ); 779 case 3: /* change hints */ 786 hinter->reset( hinter->hints, builder->current->n_points ); 791 /* counter control hints, clear stack */ [all...] |
/external/freetype/src/psaux/ |
t1decode.c | 423 /* begin hints recording session, if any */ 425 hinter->open( hinter->hints ); 792 case 3: /* change hints */ 799 hinter->reset( hinter->hints, builder->current->n_points ); 804 /* counter control hints, clear stack */ [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_upnp.c | 312 struct addrinfo hints; local 349 os_memset(&hints, 0, sizeof(struct addrinfo)); 350 hints.ai_family = AF_INET; /* IPv4 */ 351 hints.ai_socktype = SOCK_STREAM; 356 hints.ai_flags = AI_NUMERICHOST; 359 hints.ai_flags = 0; 361 hints.ai_protocol = 0; /* Any protocol? */ 363 &hints, &result); [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
FrameType.java | 45 * {@link #image2D(int, int)} constructors). To optimize access, provide access hints when making 253 * Returns the access hints bit-mask of the FrameType. 254 * @return The access hints bit-mask of the FrameType. 360 private static String keyValueForType(int elemId, int dims, int hints, Class<?> clazz) { 361 return elemId + ":" + dims + ":" + hints + ":" + (clazz != null ? clazz.getName() : "0");
|
/external/chromium_org/third_party/freetype/src/pshinter/ |
pshalgo.c | 49 /***** BASIC HINTS RECORDINGS *****/ 54 /* return true if two stem hints overlap */ 64 /* destroy hints table */ 74 FT_FREE( table->hints ); 81 /* deactivate all hints in a table */ 86 PSH_Hint hint = table->hints; 102 PSH_Hint hint = table->hints + idx; 111 /* ignore active hints */ 141 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" )); 172 /* create hints table * [all...] |
/external/freetype/src/pshinter/ |
pshalgo.c | 48 /***** BASIC HINTS RECORDINGS *****/ 53 /* return true if two stem hints overlap */ 63 /* destroy hints table */ 73 FT_FREE( table->hints ); 80 /* deactivate all hints in a table */ 85 PSH_Hint hint = table->hints; 101 PSH_Hint hint = table->hints + idx; 110 /* ignore active hints */ 140 FT_TRACE0(( "psh_hint_table_record: too many sorted hints! BUG!\n" )); 171 /* create hints table * [all...] |
/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: "
|
/external/ipsec-tools/src/racoon/ |
sockmisc.c | 982 struct addrinfo hints, *res; local 986 memset(&hints, 0, sizeof(hints)); 987 hints.ai_family = PF_UNSPEC; 988 hints.ai_socktype = SOCK_DGRAM; 989 hints.ai_flags = AI_NUMERICHOST; 990 error = getaddrinfo(host, port, &hints, &res);
|