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

1 2 3 4 5 67 8 91011>>

  /external/toybox/toys/pending/
tcpsvd.c 221 struct addrinfo hints, *res = NULL, *rp; local
236 memset(&hints, 0, sizeof hints);
237 hints.ai_family = AF_UNSPEC;
238 hints.ai_socktype = ((TT.udp) ?SOCK_DGRAM : SOCK_STREAM);
239 if ((ret = getaddrinfo(host, ptr, &hints, &res)))
  /external/libvncserver/libvncserver/
sockets.c 898 struct addrinfo hints, *servinfo, *p;
903 memset(&hints, 0, sizeof(hints));
904 hints.ai_family = AF_INET6;
905 hints.ai_socktype = SOCK_STREAM;
906 hints.ai_flags = AI_PASSIVE; /* fill in wildcard address if iface == NULL */
908 if ((rv = getaddrinfo(iface, port_str, &hints, &servinfo)) != 0) {
970 struct addrinfo hints, *servinfo, *p; local
976 memset(&hints, 0, sizeof hints);
    [all...]
  /external/libxml2/os400/
wrappers.c 29 const struct addrinfo * hints, struct addrinfo * * res)
36 xmlTranscodeResult(service, NULL, &d, NULL), hints, res);
  /external/netperf/src/
netserver.c 422 struct addrinfo hints; local
440 memset(&hints,0,sizeof(hints));
441 hints.ai_family = af;
442 hints.ai_socktype = SOCK_STREAM;
443 hints.ai_protocol = IPPROTO_TCP;
444 hints.ai_flags = AI_PASSIVE;
450 &hints,
    [all...]
  /external/pdfium/samples/
pdfium_test.cc 430 FX_DOWNLOADHINTS hints; local
431 memset(&hints, '\0', sizeof(hints));
432 hints.version = 1;
433 hints.AddSegment = Add_Segment;
445 nRet = FPDFAvail_IsDocAvail(pdf_avail, &hints);
451 nRet = FPDFAvail_IsFormAvail(pdf_avail, &hints);
522 nRet = FPDFAvail_IsPageAvail(pdf_avail, i, &hints);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 315 public void setNavigationIconHints(int hints) {
316 setNavigationIconHints(hints, false);
331 public void setNavigationIconHints(int hints, boolean force) {
332 if (!force && hints == mNavigationIconHints) return;
333 final boolean backAlt = (hints & StatusBarManager.NAVIGATION_HINT_BACK_ALT) != 0;
339 "Navigation icon hints = " + hints, local
343 mNavigationIconHints = hints;
362 final boolean showImeButton = ((hints & StatusBarManager.NAVIGATION_HINT_IME_SHOWN) != 0);
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRCodeWriter.cpp 97 int32_t hints,
  /external/libevent/
util-internal.h 185 /* Evaluates to the same boolean value as 'p', and hints to the compiler that
246 ev_socklen_t socklen, const struct evutil_addrinfo *hints);
249 void evutil_adjust_hints_for_addrconfig(struct evutil_addrinfo *hints);
251 struct evutil_addrinfo *hints, struct evutil_addrinfo **res, int *portnum);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtNet.java 191 public ServerSocket newServerSocket (Protocol protocol, String hostname, int port, ServerSocketHints hints) {
196 public ServerSocket newServerSocket (Protocol protocol, int port, ServerSocketHints hints) {
201 public Socket newClientSocket (Protocol protocol, String host, int port, SocketHints hints) {
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/effects/
ShadowEffect.java 86 RenderingHints hints = new RenderingHints(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_SPEED); local
87 ConvolveOp gaussianOp1 = new ConvolveOp(gaussianBlur1, ConvolveOp.EDGE_NO_OP, hints);
88 ConvolveOp gaussianOp2 = new ConvolveOp(gaussianBlur2, ConvolveOp.EDGE_NO_OP, hints);
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OneDimReader.cpp 75 int32_t hints,
80 CFX_ByteString temp = DecodeRow(rowNumber, row, result.get(), hints, e);
87 int32_t hints,
  /frameworks/base/services/core/java/com/android/server/notification/
ZenLog.java 186 private static String hintsToString(int hints) {
187 switch (hints) {
190 default: return Integer.toString(hints);
  /system/extras/multinetwork/
httpurl.cpp 98 struct addrinfo hints = { local
110 &hints, &result);
115 &hints, &result);
  /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 &&
  /external/deqp/framework/delibs/deutil/
deSocket.c 288 struct addrinfo hints; local
290 deMemset(&hints, 0, sizeof(hints));
291 hints.ai_family = deSocketFamilyToBsdFamily(address->family);
292 hints.ai_socktype = deSocketTypeToBsdType(address->type);
293 hints.ai_protocol = deSocketProtocolToBsdProtocol(address->protocol);
295 if (getaddrinfo(address->host, DE_NULL, &hints, &result) != 0 || !result)
  /system/core/libnetutils/
ifc_utils.c 104 struct addrinfo hints, *ai; local
111 memset(&hints, 0, sizeof(hints));
112 hints.ai_family = AF_UNSPEC;
113 hints.ai_flags = AI_NUMERICHOST;
114 hints.ai_socktype = SOCK_DGRAM;
116 ret = getaddrinfo(string, NULL, &hints, &ai);
  /external/fonttools/Lib/fontTools/
subset.py     [all...]
  /external/libpcap/Win32/Src/
getaddrinfo.c 211 "Invalid value for hints", /* EAI_BADHINTS */
296 getaddrinfo(hostname, servname, hints, res)
298 const struct addrinfo *hints;
336 if (hints) {
337 /* error check for hints */
338 if (hints->ai_addrlen || hints->ai_canonname ||
339 hints->ai_addr || hints->ai_next)
341 if (hints->ai_flags & ~AI_MASK
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
ConferenceTest.java 189 StatusHints hints = new StatusHints("Test", null, null); local
191 mConferenceObject.setStatusHints(hints);
192 assertCallStatusHints(conf, hints);
495 private void assertCallStatusHints(final Call call, final StatusHints hints) {
500 return hints;
509 "Call should have status hints " + 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/libpcap/
scanner.l 339 struct addrinfo hints, *res;
340 memset(&hints, 0, sizeof(hints));
341 hints.ai_family = AF_INET6;
342 hints.ai_flags = AI_NUMERICHOST;
343 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]":"",
  /hardware/qcom/display/msm8226/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]":"",
  /libcore/ojluni/src/main/java/java/net/
InetAddress.java 897 StructAddrinfo hints = new StructAddrinfo(); local
    [all...]
  /external/autotest/client/tests/kvm/deps/
finish.cpp 95 struct addrinfo *result = NULL, hints; local

Completed in 835 milliseconds

1 2 3 4 5 67 8 91011>>