Home
last modified time | relevance | path

Searched refs:aborted (Results 1 – 25 of 163) sorted by relevance

1234567

/third_party/googletest/googletest/test/
Dgoogletest-death-test-test.cc590 void ExpectDeathTestHelper(bool* aborted) { in ExpectDeathTestHelper() argument
591 *aborted = true; in ExpectDeathTestHelper()
593 *aborted = false; in ExpectDeathTestHelper()
598 bool aborted = true; in TEST_F() local
599 EXPECT_NONFATAL_FAILURE(ExpectDeathTestHelper(&aborted), in TEST_F()
601 EXPECT_FALSE(aborted); in TEST_F()
606 static bool aborted; in TEST_F() local
608 aborted = true; in TEST_F()
610 aborted = false; in TEST_F()
612 EXPECT_TRUE(aborted); in TEST_F()
[all …]
/third_party/node/test/parallel/
Dtest-http-client-abort-destroy.js19 assert.strictEqual(req.aborted, true);
25 assert.strictEqual(req.aborted, false);
42 assert.strictEqual(req.aborted, false);
48 assert.strictEqual(req.aborted, false);
65 assert.strictEqual(req.aborted, false);
68 assert.strictEqual(req.aborted, false);
88 assert.strictEqual(req.aborted, false);
91 assert.strictEqual(req.aborted, false);
Dtest-http-aborted.js9 assert.strictEqual(this.aborted, true);
12 assert.strictEqual(req.aborted, false);
22 assert.strictEqual(res.aborted, true);
Dtest-http-abort-stream-end.js45 assert(!req.aborted, 'got data after abort');
48 assert.strictEqual(req.aborted, true);
54 assert.strictEqual(req.aborted, false);
Dtest-http-client-spurious-aborted.js44 let aborted = false;
65 aborted = true;
73 assert.strictEqual(aborted, abortRequest);
Dtest-http2-compat-aborted.js12 assert.strictEqual(this.aborted, true);
15 assert.strictEqual(req.aborted, false);
Dtest-http2-client-destroy.js198 assert.strictEqual(req.aborted, false);
205 assert.strictEqual(req.aborted, false);
233 assert.strictEqual(req.aborted, false);
Dtest-abortcontroller.js24 ok(ac.signal.aborted);
75 ok(signal.aborted);
Dtest-timers-promisified.js94 signal.aborted = false;
103 signal.aborted = false;
Dtest-http2-stream-client.js12 assert.strictEqual(stream.aborted, false);
Dtest-child-process-fork-timeout-kill-signal.js44 signal.aborted = false;
Dtest-heapsnapshot-near-heap-limit.js90 'process should have aborted, but did not');
/third_party/node/lib/internal/
Dabort_controller.js57 get aborted() { getter in AbortSignal
64 aborted: this.aborted property
74 aborted: { enumerable: true } property
86 function createAbortSignal(aborted = false) { argument
89 signal[kAborted] = aborted;
/third_party/node/test/fixtures/wpt/dom/abort/
Devent.any.js6 assert_false(s.aborted);
17 assert_true(s.aborted);
40 assert_true(signal.aborted);
43 assert_true(signal.aborted);
69 assert_true(signal.aborted);
/third_party/node/deps/npm/node_modules/glob/
Dglob.js190 if (this.aborted)
263 this.aborted = true
302 if (this.aborted)
455 if (this.aborted)
493 if (this.aborted)
526 if (this.aborted)
560 if (this.aborted)
582 if (this.aborted)
/third_party/node/lib/
D_http_client.js231 this.aborted = false;
350 if (this.aborted) {
353 this.aborted = true;
390 if (!req.aborted && !err) {
431 res.aborted = true;
435 if (!res.aborted && res.readable) {
647 if (req.aborted || !req.emit('response', res))
714 } else if (req.finished && !this.aborted) {
/third_party/node/doc/api/
Dglobals.md42 console.log(ac.signal.aborted); // Prints True
77 Returns a new already aborted `AbortSignal`.
92 ac.signal.onabort = () => console.log('aborted!');
104 that the `abortSignal.aborted` attribute is `false` before adding an `'abort'`
113 #### `abortSignal.aborted`
118 * Type: {boolean} True after the `AbortController` has been aborted.
/third_party/node/lib/internal/fs/
Dpromises.js256 if (signal && signal.aborted)
276 if (signal?.aborted) {
294 if (signal && signal.aborted) {
299 if (signal && signal.aborted) {
319 if (signal && signal.aborted) {
694 if (options.signal?.aborted) {
721 if (options.signal?.aborted) {
Dwatchers.js317 if (signal?.aborted)
366 while (!signal?.aborted) {
Dread_file_context.js93 if (this.signal && this.signal.aborted) {
/third_party/node/lib/internal/timers/
Dpromises.js55 if (signal && signal.aborted) {
100 if (signal && signal.aborted) {
/third_party/gstreamer/gstreamer/libs/gst/check/libcheck/
Dcheck.h.in435 * @note If the check fails, the remaining of the test is aborted
450 * @note If the check fails, the remaining of the test is aborted
462 * @note Once called, the remaining of the test is aborted
472 * @note Once called, the remaining of the test is aborted
495 * @note If the check fails, the remaining of the test is aborted
508 * @note If the check fails, the remaining of the test is aborted
521 * @note If the check fails, the remaining of the test is aborted
534 * @note If the check fails, the remaining of the test is aborted
547 * @note If the check fails, the remaining of the test is aborted
560 * @note If the check fails, the remaining of the test is aborted
[all …]
/third_party/node/lib/internal/streams/
Dend-of-stream.js143 if (!willEmitClose && typeof stream.aborted === 'boolean') {
157 (rState && stream.req && stream.aborted) ||
/third_party/flutter/flutter/dev/devicelab/lib/framework/
Dadb.dart294 bool aborted = false;
324 if (!aborted) {
337 aborted = true;
344 if (!aborted) {
345 print('adb logcat aborted');
346 aborted = true;
/third_party/lwip/src/core/
Dtcp_in.c451 goto aborted;
487 goto aborted;
493 goto aborted;
514 goto aborted;
525 goto aborted;
560 goto aborted;
567 goto aborted;
580 aborted:

1234567