HomeSort by relevance Sort by last modified time
    Searched refs:hints (Results 76 - 100 of 270) sorted by null

1 2 34 5 6 7 8 91011

  /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 281 StructAddrinfo hints = new StructAddrinfo(); local
282 hints.ai_flags = AI_NUMERICHOST;
285 addresses = Libcore.os.android_getaddrinfo(address, hints, NETID_UNSET);
431 StructAddrinfo hints = new StructAddrinfo(); local
432 hints.ai_flags = AI_ADDRCONFIG;
433 hints.ai_family = AF_UNSPEC;
437 hints.ai_socktype = SOCK_STREAM;
438 InetAddress[] addresses = Libcore.os.android_getaddrinfo(host, hints, netId);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.h 87 void inspectImpl(PassRefPtr<JSONValue> objectToInspect, PassRefPtr<JSONValue> hints);
InspectorInspectorAgent.h 82 void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints);
InjectedScriptHost.idl 39 [NotEnumerable, Unforgeable, Custom] void inspect(any objectId, object hints);
  /system/netd/server/
DnsProxyListener.h 44 // Note: All of host, service, and hints may be NULL
48 struct addrinfo* hints,
  /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/iputils/
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...]
  /bionic/libc/dns/net/
getaddrinfo.c 266 "Invalid value for hints", /* EAI_BADHINTS */
415 const struct addrinfo *hints, struct addrinfo **res, unsigned netid)
460 hints == NULL ? -1 : hints->ai_flags,
461 hints == NULL ? -1 : hints->ai_family,
462 hints == NULL ? -1 : hints->ai_socktype,
463 hints == NULL ? -1 : hints->ai_protocol
2040 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);
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
handlers.c 882 struct addrinfo hints; local
883 memset(&hints, 0, sizeof(hints));
884 hints.ai_flags = AI_CANONNAME;
886 hints.ai_family = AF_INET;
888 hints.ai_family = AF_INET6;
890 hints.ai_family = AF_UNSPEC;
897 int rtn = getaddrinfo(name, NULL, &hints, &ai);
  /external/chromium_org/third_party/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);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 295 public void setNavigationIconHints(int hints) {
296 setNavigationIconHints(hints, false);
299 public void setNavigationIconHints(int hints, boolean force) {
300 if (!force && hints == mNavigationIconHints) return;
301 final boolean backAlt = (hints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0;
307 "Navigation icon hints = " + hints, local
311 mNavigationIconHints = hints;
319 final boolean showImeButton = ((hints & StatusBarManager.NAVIGATION_HINT_IME_SHOWN) != 0);
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
preload_supplier.cc 114 IndexMap::const_iterator hints[arraysize(LookupKey::kHierarchy) - 1]; local
115 std::fill(hints, hints + arraysize(hints), rule_index_->end());
195 IndexMap::const_iterator* const hint = &hints[hierarchy.size() - 1];
  /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());
desktop_window_tree_host_x11.cc 542 // Some WMs do not respect maximization hints on unmapped windows, so we
815 XWMHints* hints = XGetWMHints(xdisplay_, xwindow_);
816 if (!hints) {
817 // The window hasn't had its hints set yet.
818 hints = XAllocWMHints();
822 hints->flags |= XUrgencyHint;
824 hints->flags &= ~XUrgencyHint;
826 XSetWMHints(xdisplay_, xwindow_, hints);
827 XFree(hints);
1328 XSizeHints hints; local
    [all...]
  /frameworks/base/core/java/android/service/notification/
NotificationListenerService.java 80 /** {@link #getCurrentListenerHints() Listener hints} constant - the primary device UI
223 * {@link #getCurrentListenerHints() Listener hints} change.
225 * @param hints The current {@link #getCurrentListenerHints() listener hints}.
227 public void onListenerHintsChanged(int hints) {
442 * Gets the set of hints representing current state.
489 * Sets the desired {@link #getCurrentListenerHints() listener hints}.
497 * @param hints One or more of the HINT_ constants.
499 public final void requestListenerHints(int hints) {
502 getNotificationInterface().requestHintsFromListener(mWrapper, hints);
    [all...]
  /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 &&
  /system/core/libnetutils/
ifc_utils.c 101 struct addrinfo hints, *ai; local
108 memset(&hints, 0, sizeof(hints));
109 hints.ai_family = AF_UNSPEC;
110 hints.ai_flags = AI_NUMERICHOST;
111 hints.ai_socktype = SOCK_DGRAM;
113 ret = getaddrinfo(string, NULL, &hints, &ai);
  /external/fonttools/Lib/fontTools/
subset.py     [all...]
  /external/libpcap/Win32/Src/
getaddrinfo.c 216 "Invalid value for hints", /* EAI_BADHINTS */
301 getaddrinfo(hostname, servname, hints, res)
303 const struct addrinfo *hints;
341 if (hints) {
342 /* error check for hints */
343 if (hints->ai_addrlen || hints->ai_canonname ||
344 hints->ai_addr || hints->ai_next)
346 if (hints->ai_flags & ~AI_MASK
    [all...]
  /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/libpcap/
scanner.l 347 struct addrinfo hints, *res;
348 memset(&hints, 0, sizeof(hints));
349 hints.ai_family = AF_INET6;
350 hints.ai_flags = AI_NUMERICHOST;
351 if (getaddrinfo(yytext, NULL, &hints, &res))
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_dump_layers.cpp 253 "Orientation = %s, Flags = %s%s%s, Hints = %s%s%s, "
267 (layer->hints)? "":"[None]",
268 (layer->hints & HWC_HINT_TRIPLE_BUFFER)? "[Triple Buffer]":"",
269 (layer->hints & HWC_HINT_CLEAR_FB)? "[Clear FB]":"",

Completed in 578 milliseconds

1 2 34 5 6 7 8 91011