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

1 2 34 5 6 7 8 91011>>

  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/
ClientAutofillDataBuilder.java 87 String[] hints = viewNode.getAutofillHints(); local
88 if (hints == null || hints.length == 0) {
112 hints, partition, textValue, dateValue, toggleValue,
117 datasetWithFilledAutofillFields, @NonNull String[] hints, int partition,
120 for (int i = 0; i < hints.length; i++) {
121 String hint = hints[i];
ClientViewMetadataBuilder.java 76 String[] hints = root.getAutofillHints(); local
77 if (hints != null) {
78 for (String hint : hints) {
  /external/libevent/sample/
dns-example.c 240 struct evutil_addrinfo hints; local
241 memset(&hints, 0, sizeof(hints));
242 hints.ai_family = PF_UNSPEC;
243 hints.ai_protocol = IPPROTO_TCP;
244 hints.ai_flags = EVUTIL_AI_CANONNAME;
246 evdns_getaddrinfo(evdns_base, v[optind], NULL, &hints,
  /external/libpcap/
nametoaddr.c 148 struct addrinfo hints, *res; local
151 memset(&hints, 0, sizeof(hints));
152 hints.ai_family = PF_UNSPEC;
153 hints.ai_socktype = SOCK_STREAM; /*not really*/
154 hints.ai_protocol = IPPROTO_TCP; /*not really*/
155 error = getaddrinfo(name, NULL, &hints, &res);
sockutils.c 451 * \param hints: an addrinfo variable (passed by reference) containing the flags needed to create the
472 * \warning This function requires the 'hints' variable as parameter. The semantic of this variable is the same
474 * the programmer to look at that function in order to set the 'hints' variable appropriately.
477 struct addrinfo *hints, struct addrinfo **addrinfo, char *errbuf, int errbuflen)
481 retval = getaddrinfo(host, port, hints, addrinfo);
897 struct addrinfo hints; local
901 memset(&hints, 0, sizeof(struct addrinfo));
902 hints.ai_family = PF_UNSPEC;
903 hints.ai_socktype = SOCK_STREAM;
905 retval = getaddrinfo(token, "0", &hints, &addrinfo)
1205 struct addrinfo hints; local
    [all...]
  /external/ltp/testcases/network/stress/ns-tools/
ns-udpserver.c 203 struct addrinfo hints; /* hints for getaddrinfo() */ local
277 /* Set the hints to addrinfo() */
278 memset(&hints, '\0', sizeof(struct addrinfo));
279 hints.ai_family = family;
280 hints.ai_socktype = SOCK_DGRAM;
281 hints.ai_protocol = IPPROTO_UDP;
282 hints.ai_flags = AI_PASSIVE;
285 err = getaddrinfo(NULL, portnum, &hints, &res);
ns-tcpclient.c 139 struct addrinfo hints; /* hints for getaddrinfo() */ local
252 /* Set the hints to addrinfo() */
253 memset(&hints, '\0', sizeof(struct addrinfo));
254 hints.ai_family = family;
255 hints.ai_socktype = SOCK_STREAM;
256 hints.ai_protocol = IPPROTO_TCP;
259 err = getaddrinfo(server_name, portnum, &hints, &res);
ns-udpsender.c 290 struct addrinfo hints; /* hints for getaddrinfo() */ local
296 /* Set the hints to addrinfo() */
297 memset(&hints, '\0', sizeof(struct addrinfo));
298 hints.ai_family = udp_p->family;
299 hints.ai_socktype = SOCK_DGRAM;
300 hints.ai_protocol = IPPROTO_UDP;
303 err = getaddrinfo(udp_p->dst_name, udp_p->dst_port, &hints, &res);
  /prebuilts/go/darwin-x86/src/net/
cgo_unix.go 60 var hints C.struct_addrinfo
62 case "": // no hints
64 hints.ai_socktype = C.SOCK_STREAM
65 hints.ai_protocol = C.IPPROTO_TCP
67 hints.ai_socktype = C.SOCK_DGRAM
68 hints.ai_protocol = C.IPPROTO_UDP
75 hints.ai_family = C.AF_INET
77 hints.ai_family = C.AF_INET6
81 port, err := cgoLookupServicePort(&hints, network, service)
85 go cgoPortLookup(result, &hints, network, service
    [all...]
  /prebuilts/go/linux-x86/src/net/
cgo_unix.go 60 var hints C.struct_addrinfo
62 case "": // no hints
64 hints.ai_socktype = C.SOCK_STREAM
65 hints.ai_protocol = C.IPPROTO_TCP
67 hints.ai_socktype = C.SOCK_DGRAM
68 hints.ai_protocol = C.IPPROTO_UDP
75 hints.ai_family = C.AF_INET
77 hints.ai_family = C.AF_INET6
81 port, err := cgoLookupServicePort(&hints, network, service)
85 go cgoPortLookup(result, &hints, network, service
    [all...]
  /external/mockito/src/test/java/org/mockito/internal/session/
DefaultMockitoSessionBuilderTest.java 71 final List<String> hints = new ArrayList<String>(); local
78 hints.add(hint);
87 assertFalse(hints.isEmpty());
  /external/freetype/src/autofit/
afloader.c 33 AF_GlyphHints hints )
37 loader->hints = hints;
77 loader->hints = NULL;
186 * hints in the code further below. Code outside this emboldening
228 AF_GlyphHints hints = loader->hints; local
338 error = writing_system_class->style_hints_init( hints,
361 * Apply stem darkening (emboldening) here before hints are applied to
416 loader->pp1.x = hints->x_delta
    [all...]
  /external/libxml2/os400/
wrappers.h 37 const struct addrinfo * hints, struct addrinfo * * res);
  /external/ltp/testcases/network/netstress/
netstress.c 374 const struct addrinfo *hints,
377 int err = getaddrinfo(src_addr, port, hints, addr_info);
395 struct addrinfo hints; local
396 memset(&hints, 0, sizeof(struct addrinfo));
397 hints.ai_family = AF_UNSPEC;
398 hints.ai_socktype = sock_type;
399 hints.ai_flags = 0;
400 hints.ai_protocol = 0;
403 setup_addrinfo(source_addr, NULL, &hints, &local_addrinfo);
404 setup_addrinfo(server_addr, tcp_port, &hints, &remote_addrinfo)
565 struct addrinfo hints; local
    [all...]
  /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/pdfium/fxbarcode/oned/
BC_OnedCodaBarWriter.h 26 int32_t hints) override;
BC_OnedCode128Writer.h 32 int32_t hints) override;
BC_OnedCode39Writer.h 23 int32_t hints) override;
BC_OnedEAN8Writer.h 28 int32_t hints) override;
BC_OnedUPCAWriter.h 31 int32_t hints) override;
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/
plexus-component-annotations-1.5.5.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-component-annotations/1.6/
plexus-component-annotations-1.6.jar 
  /external/curl/CMake/
CurlTests.c 268 struct addrinfo hints, *ai; local
271 memset(&hints, 0, sizeof(hints));
272 hints.ai_family = AF_UNSPEC;
273 hints.ai_socktype = SOCK_STREAM;
277 error = getaddrinfo("127.0.0.1", "8080", &hints, &ai);
  /external/pdfium/fpdfsdk/
fpdf_dataavail.cpp 137 FX_DOWNLOADHINTS* hints) {
140 FPDF_DownloadHintsContext hints_context(hints);
168 FX_DOWNLOADHINTS* hints) {
173 FPDF_DownloadHintsContext hints_context(hints);
179 FX_DOWNLOADHINTS* hints) {
182 FPDF_DownloadHintsContext hints_context(hints);
  /external/tensorflow/tensorflow/contrib/linalg/python/kernel_tests/
linear_operator_addition_test.py 42 def _add(self, op1, op2, operator_name, hints):
269 hints = linear_operator_addition._Hints(
273 operator = self._adder.add(id1, id2, "my_operator", hints)
287 hints = linear_operator_addition._Hints(
291 operator = self._adder.add(id1, id2, "my_operator", hints)
306 hints = linear_operator_addition._Hints(
310 operator = self._adder.add(id1, id2, "my_operator", hints)
330 hints = linear_operator_addition._Hints(
334 operator = self._adder.add(id1, id2, "my_operator", hints)
350 hints = linear_operator_addition._Hints
    [all...]

Completed in 790 milliseconds

1 2 34 5 6 7 8 91011>>