HomeSort by relevance Sort by last modified time
    Searched refs:hints (Results 201 - 225 of 579) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/dbus/dbus/
dbus-sysdeps-win.c 1258 struct addrinfo hints; local
1265 _DBUS_ZERO (hints);
1268 hints.ai_family = AF_UNSPEC;
1270 hints.ai_family = AF_INET;
1272 hints.ai_family = AF_INET6;
1280 hints.ai_protocol = IPPROTO_TCP;
1281 hints.ai_socktype = SOCK_STREAM;
1283 hints.ai_flags = AI_ADDRCONFIG;
1285 hints.ai_flags = 0;
1288 if ((res = getaddrinfo(host, port, &hints, &ai)) != 0 || !ai
1392 struct addrinfo hints; local
    [all...]
dbus-sysdeps-unix.c 1300 struct addrinfo hints; local
1416 struct addrinfo hints; local
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 578 struct addrinfo hints; local
586 memset(&hints, 0, sizeof(struct addrinfo));
587 hints.ai_family = AF_UNSPEC;
588 hints.ai_socktype = SOCK_STREAM;
589 rv = getaddrinfo(host, service, &hints, &res);
  /external/libmicrohttpd/src/testspdy/
test_notls.c 468 struct addrinfo hints; local
474 memset(&hints, 0, sizeof(struct addrinfo));
475 hints.ai_family = AF_UNSPEC;
476 hints.ai_socktype = SOCK_STREAM;
477 rv = getaddrinfo(host, service, &hints, &res);
  /external/toybox/toys/other/
ifconfig.c 63 struct addrinfo hints, *result, *rp = 0; local
67 memset(&hints, 0 , sizeof(struct addrinfo));
68 hints.ai_family = af;
69 hints.ai_socktype = SOCK_STREAM;
74 status = getaddrinfo(host, NULL, &hints, &result);
  /external/toybox/toys/pending/
telnetd.c 69 struct addrinfo hints, *result; local
98 memset(&hints, 0 , sizeof(struct addrinfo));
99 hints.ai_family = af;
100 hints.ai_socktype = SOCK_STREAM;
102 status = getaddrinfo(host, NULL, &hints, &result);
netstat.c 203 struct addrinfo hints, *result, *rp; local
205 memset(&hints, 0, sizeof(struct addrinfo));
206 hints.ai_family = af;
208 if (!getaddrinfo(ip, NULL, &hints, &result)) {
  /external/zxing/core/
core.jar 
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerService.java 263 private int mListenerHints; // right now, all hints are global
1158 final int hints = calculateHints(); local
1232 int hints = 0; local
1246 int hints = calculateHints(); local
    [all...]
  /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);
  /frameworks/base/core/java/android/service/notification/
NotificationListenerService.java 121 /** {@link #getCurrentListenerHints() Listener hints} constant - the primary device UI
126 /** {@link #getCurrentListenerHints() Listener hints} constant - the primary device UI
131 /** {@link #getCurrentListenerHints() Listener hints} constant - the primary device UI
315 * {@link #getCurrentListenerHints() Listener hints} change.
317 * @param hints The current {@link #getCurrentListenerHints() listener hints}.
319 public void onListenerHintsChanged(int hints) {
593 * Gets the set of hints representing current state.
647 * Sets the desired {@link #getCurrentListenerHints() listener hints}.
658 * @param hints One or more of the HINT_ constants
1462 final int hints = msg.arg1; local
    [all...]
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_dump_layers.cpp 258 "Orientation = %s, Flags = %s%s%s, Hints = %s%s%s, "
272 (layer->hints)? "":"[None]",
273 (layer->hints & HWC_HINT_TRIPLE_BUFFER)? "[Triple Buffer]":"",
274 (layer->hints & HWC_HINT_CLEAR_FB)? "[Clear FB]":"",
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_dump_layers.cpp 257 "Orientation = %s, Flags = %s%s%s, Hints = %s%s%s, "
271 (layer->hints)? "":"[None]",
272 (layer->hints & HWC_HINT_TRIPLE_BUFFER)? "[Triple Buffer]":"",
273 (layer->hints & HWC_HINT_CLEAR_FB)? "[Clear FB]":"",
  /external/v8/src/compiler/
ast-graph-builder.cc 1303 CompareOperationHints hints; local
2891 CompareOperationHints hints; local
3847 BinaryOperationHints hints; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
irda.h 127 __u8 hints[2]; member in struct:irda_device_info
  /development/ndk/platforms/android-21/include/linux/
irda.h 127 __u8 hints[2]; member in struct:irda_device_info
  /external/autotest/client/deps/nvmap_compactor/src/
nvmap_carveout_compactor.c 576 XWMHints hints; local
632 hints.input = true;
633 hints.flags = InputHint;
634 xres = XSetWMHints(x_display, win, &hints);
636 fprintf(stderr, "FAIL setting X WM hints: %d\n", xres);
  /external/curl/lib/
setup-os400.h 46 const struct addrinfo * hints,
  /external/kernel-headers/original/uapi/linux/
irda.h 136 __u8 hints[2]; /* Hint bits */ member in struct:irda_device_info
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 234 public void addRenderingHints(Map hints)
236 graphics.addRenderingHints(hints);
564 public void setRenderingHints(Map hints)
566 graphics.setRenderingHints(hints);
  /external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
MethodDescriptor.java 436 * Returns parameter hints.
438 * @return an array of parameter hints
442 String[] hints = new String[parametersAnnotations.length]; local
443 for (int index = 0; index < hints.length; index++) {
454 hints[index] = hint;
456 return hints;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
irda.h 139 __u8 hints[2]; /* Hint bits */ member in struct:irda_device_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
irda.h 136 __u8 hints[2]; /* Hint bits */ member in struct:irda_device_info
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
irda.h 127 __u8 hints[2]; member in struct:irda_device_info
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/
irda.h 127 __u8 hints[2]; member in struct:irda_device_info

Completed in 2428 milliseconds

1 2 3 4 5 6 7 891011>>