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

1 23 4 5 6 7 8 91011>>

  /external/toybox/toys/pending/
wget.c 79 struct addrinfo hints, *result, *rp; local
82 memset(&hints, 0, sizeof(struct addrinfo));
83 hints.ai_family = AF_UNSPEC;
84 hints.ai_socktype = SOCK_STREAM;
85 hints.ai_flags = 0;
86 hints.ai_protocol = 0;
88 if ((errno = getaddrinfo(hostname, port, &hints, &result)))
  /external/libevent/test/
regress_util.c 928 struct evutil_addrinfo hints; local
932 memset(&hints, 0, sizeof(hints));
933 hints.ai_family = PF_UNSPEC;
934 hints.ai_socktype = SOCK_STREAM;
935 r = evutil_getaddrinfo("1.2.3.4", "8080", &hints, &ai);
943 memset(&hints, 0, sizeof(hints));
944 hints.ai_family = PF_UNSPEC;
945 hints.ai_protocol = IPPROTO_UDP
1064 struct evutil_addrinfo hints; local
    [all...]
regress_dns.c 1264 struct evutil_addrinfo hints, *ai = NULL; local
1352 struct evutil_addrinfo hints, *a; local
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
ViewAttributesTest.java 59 private void checkEditTextNoHint(@Nullable String[] hints) {
60 assertThat(hints).isNull();
63 private void checkEditTextHintCustom(@Nullable String[] hints) {
64 assertThat(hints).isEqualTo(
68 private void checkEditTextPassword(@Nullable String[] hints) {
69 assertThat(hints).isEqualTo(new String[] {View.AUTOFILL_HINT_PASSWORD});
72 private void checkEditTextPhoneName(@Nullable String[] hints) {
73 assertThat(hints).isEqualTo(
77 private void checkEditTextHintsFromArray(@Nullable String[] hints) {
78 assertThat(hints).isEqualTo(new String[] {"yesterday", "today", "tomorrow", "never"})
    [all...]
  /external/curl/lib/
asyn-thread.c 150 const struct addrinfo *hints);
164 struct addrinfo hints; member in struct:thread_sync_data
205 const struct addrinfo *hints)
218 DEBUGASSERT(hints);
219 tsd->hints = *hints;
221 (void) hints;
279 rc = Curl_getaddrinfo_ex(tsd->hostname, service, &tsd->hints, &tsd->res);
384 const struct addrinfo *hints)
399 if(!init_thread_sync_data(td, hostname, port, hints)) {
607 struct addrinfo hints; local
    [all...]
curl_addrinfo.h 70 const struct addrinfo *hints,
97 const struct addrinfo *hints,
  /external/ltp/testcases/network/stress/ns-tools/
ns-udpclient.c 151 struct addrinfo hints; /* hints for getaddrinfo() */ local
257 /* Set the hints to addrinfo() */
258 memset(&hints, '\0', sizeof(struct addrinfo));
259 hints.ai_family = family;
260 hints.ai_socktype = SOCK_DGRAM;
261 hints.ai_protocol = IPPROTO_UDP;
263 err = getaddrinfo(server_name, portnum, &hints, &res);
  /external/tensorflow/tensorflow/core/platform/cloud/
gcs_dns_cache.cc 97 addrinfo hints; local
98 memset(&hints, 0, sizeof(hints));
99 hints.ai_family = AF_INET; // Only use IPv4 for now.
100 hints.ai_socktype = SOCK_STREAM;
102 int return_code = getaddrinfo(name.c_str(), nullptr, &hints, &result);
  /external/clang/test/CodeGen/
builtins-arm64.c 23 void hints() { function
  /external/freetype/src/autofit/
afhints.h 29 * The definition of outline glyph hints. These are shared by all
429 af_glyph_hints_init( AF_GlyphHints hints,
433 af_glyph_hints_rescale( AF_GlyphHints hints,
437 af_glyph_hints_reload( AF_GlyphHints hints,
441 af_glyph_hints_save( AF_GlyphHints hints,
445 af_glyph_hints_align_edge_points( AF_GlyphHints hints,
449 af_glyph_hints_align_strong_points( AF_GlyphHints hints,
453 af_glyph_hints_align_weak_points( AF_GlyphHints hints,
458 af_glyph_hints_scale_dim( AF_GlyphHints hints,
465 af_glyph_hints_done( AF_GlyphHints hints ); variable
    [all...]
aflatin.h 168 af_latin_hints_compute_segments( AF_GlyphHints hints,
172 af_latin_hints_link_segments( AF_GlyphHints hints,
178 af_latin_hints_compute_edges( AF_GlyphHints hints,
182 af_latin_hints_detect_features( AF_GlyphHints hints,
afwarp.h 52 AF_GlyphHints hints,
aflatin.c 65 AF_GlyphHintsRec hints[1]; local
74 af_glyph_hints_init( hints, face->memory );
169 af_glyph_hints_rescale( hints, (AF_StyleMetrics)dummy );
171 error = af_glyph_hints_reload( hints, &face->glyph->outline );
178 AF_AxisHints axhints = &hints->axis[dim];
183 error = af_latin_hints_compute_segments( hints,
194 af_latin_hints_link_segments( hints,
264 af_glyph_hints_done( hints );
    [all...]
afmodule.c 33 af_glyph_hints_dump_segments( AF_GlyphHints hints,
36 af_glyph_hints_dump_points( AF_GlyphHints hints,
39 af_glyph_hints_dump_edges( AF_GlyphHints hints,
520 AF_GlyphHints hints = _af_debug_hints_rec; local
526 if ( hints->memory )
527 af_glyph_hints_done( hints );
529 af_glyph_hints_init( hints, memory );
530 af_loader_init( loader, hints );
539 af_glyph_hints_dump_points( hints, 0 );
540 af_glyph_hints_dump_segments( hints, 0 )
    [all...]
afcjk.h 114 af_cjk_hints_init( AF_GlyphHints hints,
119 AF_GlyphHints hints,
afwarp.c 162 AF_GlyphHints hints,
184 org_scale = hints->y_scale;
185 org_delta = hints->y_delta;
189 org_scale = hints->x_scale;
190 org_delta = hints->x_delta;
198 axis = &hints->axis[dim];
201 points = hints->points;
202 num_points = hints->num_points;
356 hints->xmin_delta = FT_MulFix( X1, best_scale - org_scale )
358 hints->xmax_delta = FT_MulFix( X2, best_scale - org_scale
    [all...]
  /external/pdfium/fxbarcode/oned/
BC_OnedEAN13Writer.h 27 int32_t hints) override;
  /external/webrtc/webrtc/base/
nethelpers.cc 37 struct addrinfo hints = {0};
39 hints.ai_family = AF_INET;
40 hints.ai_flags = AI_ADDRCONFIG;
41 int ret = getaddrinfo(hostname.c_str(), NULL, &hints, &result);
  /frameworks/support/slices/builders/src/main/java/androidx/slice/builders/impl/
GridRowBuilderListV1Impl.java 154 @Slice.SliceHint String[] hints = isLoading local
157 getBuilder().addText(text, null, hints);
173 @Slice.SliceHint String[] hints = isLoading local
176 getBuilder().addText(text, null, hints);
192 ArrayList<String> hints = new ArrayList<>(); local
194 hints.add(HINT_NO_TINT);
197 hints.add(HINT_LARGE);
200 hints.add(HINT_PARTIAL);
202 getBuilder().addIcon(image, null, hints);
  /hardware/interfaces/power/1.2/vts/functional/
VtsHalPowerV1_2TargetTest.cpp 55 std::vector<PowerHint> hints; local
58 hints.emplace_back(static_cast<PowerHint>(i));
61 hints.emplace_back(badHint);
64 for (auto& hint : hints) {
72 // Turning these hints on in different orders triggers different code paths,
  /external/android-clat/
dns64.c 40 const struct addrinfo hints = { local
55 status = android_getaddrinfofornet(ipv4_name, NULL, &hints, net_id, MARK_UNSET, &result);
  /external/llvm/test/MC/ARM/
thumb2-ldrb-ldrh.s 5 @ preload hints).
  /external/pdfium/core/fpdfapi/parser/
cpdf_read_validator.h 27 void SetDownloadHints(CPDF_DataAvail::DownloadHints* hints) {
28 hints_ = hints;
  /frameworks/base/native/android/
net.c 77 const struct addrinfo *hints, struct addrinfo **res) {
84 return android_getaddrinfofornet(node, service, hints, netid, 0, res);
  /external/ltp/testcases/network/tcp_cmds/sendfile/
testsf_s.c 35 struct addrinfo hints; local
57 memset(&hints, 0, sizeof(hints));
58 hints.ai_family = PFI;
59 if ((gai = getaddrinfo(argv[1], NULL, &hints, &hp)) != 0) {

Completed in 1099 milliseconds

1 23 4 5 6 7 8 91011>>