Home
last modified time | relevance | path

Searched refs:kTimeout (Results 1 – 19 of 19) sorted by relevance

/third_party/node/test/parallel/
Dtest-tls-wrap-timeout.js5 const { kTimeout, TIMEOUT_MAX } = require('internal/timers');
41 assert.notStrictEqual(socket[kTimeout]._idleTimeout, -1);
42 lastIdleStart = socket[kTimeout]._idleStart;
53 assert.strictEqual(socket[kTimeout]._idleTimeout, -1);
54 assert(lastIdleStart < socket[kTimeout]._idleStart);
Dtest-http-client-timeout-on-connect.js8 const { kTimeout } = require('internal/timers');
20 assert.strictEqual(socket[kTimeout], null);
22 assert.strictEqual(socket[kTimeout]._idleTimeout, 1);
Dtest-http2-socket-proxy.js13 const { kTimeout } = require('internal/timers');
37 assert.strictEqual(session[kTimeout]._idleTimeout, 987);
40 let inspectedTimeout = util.inspect(session[kTimeout]);
45 inspectedTimeout = util.inspect([ session[kTimeout] ]);
50 const inspectedTimersList = util.inspect([[ session[kTimeout]._idlePrev ]]);
Dtest-child-process-http-socket-leak.js21 const { kTimeout } = require('internal/timers');
49 assert.strictEqual(socket[kTimeout], null);
Dtest-http2-compat-socket.js12 const { kTimeout } = require('internal/timers');
38 assert.strictEqual(request.stream.session[kTimeout]._idleTimeout, 987);
/third_party/skia/third_party/externals/angle2/util/
Dtest_utils_unittest.cpp205 constexpr double kTimeout = 3.0; in TEST() local
209 while (!process->finished() && timer.getElapsedWallClockTime() < kTimeout) in TEST()
237 constexpr double kTimeout = 3.0; in TEST() local
241 while (!process->finished() && timer.getElapsedWallClockTime() < kTimeout) in TEST()
/third_party/skia/third_party/externals/angle2/samples/multiple_contexts/
DMultipleContexts.cpp24 constexpr GLuint64 kTimeout = 10000000; variable
70 glClientWaitSync(textureAndFence.fenceSync, 0, kTimeout); in UpdateThreadLoop()
173 glClientWaitSync(textureAndFence.fenceSync, 0, kTimeout); in destroy()
201 glClientWaitSync(textureAndFence.fenceSync, 0, kTimeout); in draw()
/third_party/node/lib/internal/
Dabort_controller.js91 const kTimeout = Symbol('kTimeout'); constant
187 signal[kTimeout] = true;
240 …const isTimeoutOrNonEmptyCompositeSignal = this[kTimeout] || (this[kComposite] && this[kSourceSign…
256 …const isTimeoutOrNonEmptyCompositeSignal = this[kTimeout] || (this[kComposite] && this[kSourceSign…
Dstream_base_commons.js24 kTimeout,
248 clearTimeout(this[kTimeout]);
256 this[kTimeout] = setUnrefTimeout(this._onTimeout.bind(this), msecs);
Dtimers.js653 kTimeout: Symbol('timeout'), // For hiding Timeouts on other internals. property
/third_party/node/lib/
Dnet.js141 const { kTimeout } = require('internal/timers');
403 this[kTimeout] = null;
516 if (s[kTimeout])
517 s[kTimeout].refresh();
810 clearTimeout(s[kTimeout]);
1109 clearTimeout(context[kTimeout]);
1181 …context[kTimeout] = setTimeout(internalConnectMultipleTimeout, context.timeout, context, req, hand…
1465 [kTimeout]: null,
1570 clearTimeout(context[kTimeout]);
/third_party/node/test/common/
Dwpt.js400 const kTimeout = 'timeout'; constant
705 return kTimeout;
744 if (status === kTimeout) {
745 this.fail(filename, { name: 'WPT testharness timeout' }, kTimeout);
/third_party/skia/src/gpu/mtl/
DGrMtlUtil.h57 kTimeout = 1, enumerator
DGrMtlUtil.mm196 *error = GrCreateMtlError(description, GrMtlErrorCode::kTimeout);
231 *error = GrCreateMtlError(description, GrMtlErrorCode::kTimeout);
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DMultithreadingTest.cpp774 constexpr GLuint64 kTimeout = 1'000'000'000; // 1 second in TEST_P() local
775 int result = eglClientWaitSyncKHR(dpy, sync, 0, kTimeout); in TEST_P()
848 constexpr GLuint64 kTimeout = 2'000'000'000; // 1 second in TEST_P() local
850 ASSERT_EQ(EGL_CONDITION_SATISFIED_KHR, eglClientWaitSyncKHR(dpy, sync, 0, kTimeout)); in TEST_P()
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLSyncTest.cpp220 constexpr GLuint64 kTimeout = 1'000'000'000; // 1 second in TEST_P() local
223 eglClientWaitSyncKHR(display, sync, EGL_SYNC_FLUSH_COMMANDS_BIT_KHR, kTimeout)); in TEST_P()
/third_party/node/lib/internal/http2/
Dcore.js174 const { kTimeout } = require('internal/timers');
1245 this[kTimeout] = null;
1340 if (this[kTimeout]) this[kTimeout].refresh();
1974 this[kTimeout] = null;
1998 if (this[kTimeout])
1999 this[kTimeout].refresh();
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationTimelineSemaphoreTests.cpp2398 constexpr deUint64 kTimeout = 10000000000ull; // 10 seconds in nanoseconds. in hostWait() local
2409 VK_CHECK(vkd.waitSemaphores(device, &waitInfo, kTimeout)); in hostWait()
/third_party/chromium/patch/
D0003-ohos-1115.patch42800 CompleteWithError(LinkGenerationError::kTimeout);