Home
last modified time | relevance | path

Searched refs:tries (Results 1 – 25 of 627) sorted by relevance

12345678910>>...26

/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-spam/
Dminimal-ws-client-spam.c41 static int concurrent = 3, conn, tries, est, errors, closed, sent, limit = 15; variable
52 if (tries == limit) { in connect_client()
71 tries++; in connect_client()
104 in ? (char *)in : "(null)", tries, est, closed, errors); in callback_minimal_spam()
113 if (tries == closed + errors) { in callback_minimal_spam()
123 __func__, tries, est, closed, errors); in callback_minimal_spam()
131 if (tries == closed + errors) { in callback_minimal_spam()
135 if (tries == limit) { in callback_minimal_spam()
137 __func__, tries, est, sent, closed, errors); in callback_minimal_spam()
145 __func__, tries, est, closed, errors); in callback_minimal_spam()
[all …]
/third_party/node/test/parallel/
Dtest-http-dns-error.js37 function tryGet(mod, tries) { argument
42 if (err.code === 'EAGAIN' && tries < MAX_TRIES) {
43 tryGet(mod, ++tries);
51 function tryRequest(mod, tries) { argument
58 if (err.code === 'EAGAIN' && tries < MAX_TRIES) {
59 tryRequest(mod, ++tries);
/third_party/ltp/testcases/kernel/containers/netns/
Dnetns_netlink.c46 int fd, len, event_found, tries; in child_func() local
66 tries = 0; in child_func()
69 while (tries < MAX_TRIES) { in child_func()
80 tries++; in child_func()
/third_party/ltp/testcases/commands/eject/
Deject-tests.sh68 local tries=100
71 while [ $tries -gt 0 ]; do
77 tries=$((tries-1))
/third_party/node/lib/internal/dns/
Dutils.js47 const { tries = 4 } = { ...options };
48 validateInt32(tries, 'options.tries', 1, 2 ** 31 - 1);
49 return tries;
56 const tries = validateTries(options);
57 this._handle = new ChannelWrap(timeout, tries);
/third_party/node/lib/internal/fs/
Drimraf.js209 const tries = options.maxRetries + 1;
211 for (let i = 1; i <= tries; i++) {
218 i < tries &&
249 const tries = options.maxRetries + 1;
251 for (let i = 1; i <= tries; i++) {
258 i < tries &&
/third_party/lwip/src/core/ipv4/
Ddhcp.c323 if (dhcp->tries < 255) { in dhcp_check()
324 dhcp->tries++; in dhcp_check()
422 if (dhcp->tries < 255) { in dhcp_select()
423 dhcp->tries++; in dhcp_select()
425 msecs = (u16_t)((dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000); in dhcp_select()
517 if (dhcp->tries <= 5) { in dhcp_timeout()
528 if (dhcp->tries <= 1) { in dhcp_timeout()
538 if (dhcp->tries < REBOOT_TRIES) { in dhcp_timeout()
876 dhcp->tries = 0; in dhcp_network_changed()
894 dhcp->tries = 0; in dhcp_network_changed()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcordz_functions_test.cc72 int tries = 0; in TEST() local
75 ++tries; in TEST()
76 ASSERT_THAT(tries, Le(1000)); in TEST()
/third_party/skia/tests/
DSkScalerCacheTest.cpp58 for (int tries = 0; tries < 100; tries++) { in DEF_TEST() local
/third_party/flutter/flutter/examples/platform_channel/android/app/src/androidTest/java/com/example/platformchannel/
DExampleInstrumentedTest.java67 BitmapPoller(int tries) { in BitmapPoller() argument
68 triesPending = tries; in BitmapPoller()
69 waitMsec = delayMsec * tries + 100; in BitmapPoller()
/third_party/flutter/flutter/examples/platform_channel_swift/android/app/src/androidTest/java/com/example/platformchannel/
DExampleInstrumentedTest.java67 BitmapPoller(int tries) { in BitmapPoller() argument
68 triesPending = tries; in BitmapPoller()
69 waitMsec = delayMsec * tries + 100; in BitmapPoller()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkDeviceMemoryExternalMac.hpp108 for(int tries = 0; tries < 6; ++tries) in allocateBuffer() local
/third_party/node/deps/npm/docs/content/cli-commands/
Dnpm-repo.md19 This command tries to guess at the likely location of a package's
20 repository URL, and then tries to open it using the `--browser`
Dnpm-bugs.md20 This command tries to guess at the likely location of a package's
21 bug tracker URL, and then tries to open it using the `--browser`
Dnpm-docs.md22 This command tries to guess at the likely location of a package's
23 documentation URL, and then tries to open it using the `--browser`
/third_party/glib/gio/
Dgwin32file-sync-stream.c370 DWORD tries; in _file_sync_stream_stat() local
379 for (tries = 5; tries > 0; tries--) in _file_sync_stream_stat()
406 if (tries == 0) in _file_sync_stream_stat()
/third_party/curl/docs/examples/
Dftpuploadresume.c69 const char *localpath, long timeout, long tries) in upload() argument
103 for(c = 0; (r != CURLE_OK) && (c < tries); c++) { in upload()
/third_party/lwip/src/core/ipv6/
Ddhcp6.c260 dhcp6->tries = 0; in dhcp6_set_state()
396 if (dhcp6->tries == 0) { in dhcp6_create_msg()
490 if (dhcp6->tries < 255) { in dhcp6_information_request()
491 dhcp6->tries++; in dhcp6_information_request()
493 msecs = (u16_t)((dhcp6->tries < 6 ? 1 << dhcp6->tries : 60) * 1000); in dhcp6_information_request()
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dcontainer.dart54 /// Summary: [Container] tries, in order: to honor [alignment], to size itself to
61 /// and the parent provides unbounded constraints, then [Container] tries to
65 /// [constraints] are provided, then the [Container] tries to be as small as
74 /// constraints, then the [Container] tries to size itself around the child.
77 /// constraints, then the [Container] tries to expand to fit the parent, and
192 /// Summary: [Container] tries, in order: to honor [alignment], to size itself
199 /// and the parent provides unbounded constraints, then [Container] tries to
203 /// [constraints] are provided, then the [Container] tries to be as small as
212 /// constraints, then the [Container] tries to size itself around the child.
215 /// constraints, then the [Container] tries to expand to fit the parent, and
/third_party/flutter/flutter/dev/integration_tests/ios_add2app/ios_add2appTests/
DIntegrationTests.m61 int tries = 10;
63 while (weakViewController != nil && tries != 0) {
65 tries--;
/third_party/libuv/src/unix/
Dos390-syscalls.c389 unsigned int tries, i; in mkdtemp() local
407 tries = TMP_MAX; in mkdtemp()
425 } while (--tries); in mkdtemp()
429 if (tries == 0) { in mkdtemp()
/third_party/boost/libs/interprocess/proj/
Dto-do.txt156 ++tries;
157 if(tries > 100)
159 tries = 0;
245 //if any other thread tries to create the file
/third_party/libwebsockets/lib/abstract/protocols/smtp/
Dprivate-lib-abstract-protocols-smtp.h21 int tries; member
/third_party/toybox/toys/net/
Dsntp.c77 int fd, tries = 0; in sntp_main() local
135 if (!(FLAG(S)||FLAG(m)||FLAG(D)||FLAG(d)) && ++tries == 3) in sntp_main()
/third_party/lwip/test/unit/dhcp/
Dtest_dhcp.c879 u8_t tries; in START_TEST() local
917 tries = dhcp->tries; in START_TEST()
925 fail_unless(tries == dhcp->tries); in START_TEST()

12345678910>>...26