HomeSort by relevance Sort by last modified time
    Searched refs:hints (Results 51 - 75 of 189) sorted by null

1 23 4 5 6 7 8

  /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/chromium_org/third_party/WebKit/Source/devtools/scripts/
check_injected_webgl_calls_info.py 82 hints = {
111 if function_name in hints:
112 result["hints"] = hints[function_name]
  /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/chromium_org/media/audio/linux/
alsa_wrapper.cc 22 int AlsaWrapper::DeviceNameHint(int card, const char* iface, void*** hints) {
23 return snd_device_name_hint(card, iface, hints);
30 int AlsaWrapper::DeviceNameFreeHint(void** hints) {
31 return snd_device_name_free_hint(hints);
alsa_wrapper.h 21 virtual int DeviceNameHint(int card, const char* iface, void*** hints);
23 virtual int DeviceNameFreeHint(void** hints);
  /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/netcat/
netcat.c 127 struct addrinfo hints; local
331 memset(&hints, 0, sizeof(struct addrinfo));
332 hints.ai_family = family;
333 hints.ai_socktype = uflag ? SOCK_DGRAM : SOCK_STREAM;
334 hints.ai_protocol = uflag ? IPPROTO_UDP : IPPROTO_TCP;
336 hints.ai_flags |= AI_NUMERICHOST;
383 s = local_listen(host, uport, hints);
452 s = socks_connect(host, portlist[i], hints,
457 s = remote_connect(host, portlist[i], hints);
590 remote_connect(const char *host, const char *port, struct addrinfo hints)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.idl 38 [Custom] void inspect(any objectId, any hints);
InspectorAgent.cpp 162 void InspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints)
165 m_frontend->inspector()->inspect(objectToInspect, hints);
171 m_pendingInspectData.second = hints;
InjectedScriptHost.cpp 73 void InjectedScriptHost::inspectImpl(PassRefPtr<JSONValue> object, PassRefPtr<JSONValue> hints)
77 inspectorAgent->inspect(remoteObject, hints->asObject());
InjectedScriptHost.h 82 void inspectImpl(PassRefPtr<JSONValue> objectToInspect, PassRefPtr<JSONValue> hints);
InspectorAgent.h 89 void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints);
  /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/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11video.c 331 XWMHints *hints; local
387 hints = NULL;
390 hints = XGetWMHints(SDL_Display, WMwindow);
402 /* Set the input hints so we get keyboard input */
403 if(!hints) {
404 hints = XAllocWMHints();
405 hints->input = True;
406 hints->flags = InputHint;
408 XSetWMHints(SDL_Display, WMwindow, hints);
409 XFree(hints);
797 XSizeHints *hints; local
    [all...]
  /system/netd/
DnsProxyListener.cpp 53 struct addrinfo* hints,
61 mHints(hints),
210 struct addrinfo* hints = NULL; local
220 hints = (struct addrinfo*) calloc(1, sizeof(struct addrinfo));
221 hints->ai_flags = ai_flags;
222 hints->ai_family = ai_family;
223 hints->ai_socktype = ai_socktype;
224 hints->ai_protocol = ai_protocol;
237 new DnsProxyListener::GetAddrInfoHandler(cli, name, service, hints, iface, pid, uid,
  /external/iputils/
tracepath6.c 382 struct addrinfo hints, *ai, *ai0; local
436 memset(&hints, 0, sizeof(hints));
437 hints.ai_family = family;
438 hints.ai_socktype = SOCK_DGRAM;
439 hints.ai_protocol = IPPROTO_UDP;
441 hints.ai_flags = AI_IDN;
443 gai = getaddrinfo(argv[0], pbuf, &hints, &ai0);
ping6.c 451 struct addrinfo hints, *ai0, *ai; local
460 memset(&hints, 0, sizeof(hints));
466 hints.ai_family = AF_INET6;
471 hints.ai_family = AF_INET;
478 hints.ai_socktype = SOCK_DGRAM;
480 hints.ai_flags = AI_IDN;
483 gai = getaddrinfo(arg, 0, &hints, &ai0);
700 struct addrinfo hints, *ai; local
861 memset(&hints, 0, sizeof(hints))
    [all...]
  /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/zxing/qr_scanner/src/com/google/zxing/client/android/
DecodeHandler.java 42 DecodeHandler(CaptureActivity activity, Hashtable<DecodeHintType,Object> hints) {
44 multiFormatReader.setHints(hints);
  /libcore/luni/src/main/java/java/net/
InetAddress.java 265 StructAddrinfo hints = new StructAddrinfo(); local
266 hints.ai_flags = AI_NUMERICHOST;
269 addresses = Libcore.os.getaddrinfo(address, hints);
398 StructAddrinfo hints = new StructAddrinfo(); local
399 hints.ai_flags = AI_ADDRCONFIG;
400 hints.ai_family = AF_UNSPEC;
404 hints.ai_socktype = SOCK_STREAM;
405 InetAddress[] addresses = Libcore.os.getaddrinfo(host, hints);
    [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/openssh/
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)
sshconnect.c 191 struct addrinfo hints, *res; local
220 memset(&hints, 0, sizeof(hints));
221 hints.ai_family = ai->ai_family;
222 hints.ai_socktype = ai->ai_socktype;
223 hints.ai_protocol = ai->ai_protocol;
224 hints.ai_flags = AI_PASSIVE;
225 gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
345 struct addrinfo hints, *ai, *aitop; local
355 memset(&hints, 0, sizeof(hints))
    [all...]
  /bionic/libc/netbsd/net/
getaddrinfo.c 263 "Invalid value for hints", /* EAI_BADHINTS */
410 const struct addrinfo *hints, struct addrinfo **res, const char *iface)
453 hints == NULL ? -1 : hints->ai_flags,
454 hints == NULL ? -1 : hints->ai_family,
455 hints == NULL ? -1 : hints->ai_socktype,
456 hints == NULL ? -1 : hints->ai_protocol
2053 struct addrinfo hints, *res0, *res; local
    [all...]
  /external/ipsec-tools/src/libipsec/
policy_parse.y 379 struct addrinfo hints, *res;
406 memset(&hints, 0, sizeof(hints));
407 hints.ai_family = PF_UNSPEC;
408 hints.ai_flags = AI_NUMERICHOST;
409 hints.ai_socktype = SOCK_DGRAM;
410 error = getaddrinfo(addr, serv, &hints, &res);

Completed in 1950 milliseconds

1 23 4 5 6 7 8