Home
last modified time | relevance | path

Searched refs:exited (Results 1 – 25 of 258) sorted by relevance

1234567891011

/third_party/python/Lib/test/test_asyncio/
Dtest_asyncio_waitfor.py14 self.exited = False
29 self.exited = True
41 self.assertTrue(t.exited)
54 self.assertTrue(t.exited)
/third_party/ntfs-3g/libfuse-lite/
Dfuse_session.c24 volatile int exited; member
103 se->exited = 1; in fuse_session_exit()
110 se->exited = 0; in fuse_session_reset()
115 if (se->op.exited) in fuse_session_exited()
116 return se->op.exited(se->data); in fuse_session_exited()
118 return se->exited; in fuse_session_exited()
/third_party/boost/boost/process/
Dsystem.hpp59 std::atomic_bool exited{false}; in system_impl() local
66 boost::asio::post(ios.get_executor(), [&]{exited.store(true);}); in system_impl()
71 while (!exited.load()) in system_impl()
/third_party/glib/gio/tests/
Dcontexts.c307 gboolean exited = FALSE; in test_context_specific_identity() local
314 exited |= GPOINTER_TO_UINT (g_thread_join (threads[i])); in test_context_specific_identity()
315 g_assert (exited); in test_context_specific_identity()
362 gboolean exited = FALSE; in test_context_specific_emit() local
397 exited |= GPOINTER_TO_UINT (g_thread_join (threads[i])); in test_context_specific_emit()
398 g_assert (exited); in test_context_specific_emit()
/third_party/ltp/lib/
Dtst_status.c14 const char *exited(int status) in exited() function
39 return exited(status); in tst_strstatus()
/third_party/googletest/googletest/test/
Dgtest_xml_output_unittest.py308 self.assert_(p.exited)
333 self.assert_(p.exited)
386 self.assert_(p.exited)
Dgtest_test_utils.py293 self.exited = False
296 self.exited = True
Dgoogletest-uninitialized-test.py56 if p.exited and p.exit_code == 0:
Dgtest_list_output_unittest.py261 self.assertTrue(p.exited)
Dgoogletest-throw-on-failure-test.py73 return p.exited and p.exit_code == 0
Dgoogletest-json-output-unittest.py745 self.assert_(p.exited)
771 self.assert_(p.exited)
812 self.assert_(p.exited)
Dgtest_xml_outfiles_test.py111 self.assert_(p.exited)
Dgoogletest-color-test.py64 return not p.exited or p.exit_code
Dgoogletest-json-outfiles-test.py170 self.assert_(p.exited)
/third_party/json/test/thirdparty/Fuzzer/test/
Dfuzzer-jobs.test28 CHECK-DAG: Job 0 exited with exit code 0
29 CHECK-DAG: Job 1 exited with exit code 0
/third_party/node/deps/npm/test/tap/
Dgit-npmignore.js103 t.is(code, 0, 'npm pack exited cleanly')
115 t.is(code, 0, 'npm install exited cleanly')
/third_party/ltp/testcases/kernel/controllers/freezer/
D00_description.txt29 have exited. Then we unfreeze the sleep process. We expect the
47 after it normally would have exited.
53 before it normally would have exited.
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_system/targets/
Dios.dart53 throw Exception('AOT snapshotter exited with code $snapshotExitCode');
72 throw Exception('AOT snapshotter exited with code ${results.join()}');
83 throw Exception('lipo exited with code ${result.exitCode}');
/third_party/flutter/flutter/dev/devicelab/bin/tasks/
Ddartdocs.dart58 throw Exception('flutter analyze exited with unexpected error code $result');
60 … throw Exception('flutter analyze exited with successful status code despite reporting errors');
Dgradle_plugin_bundle_test.dart83 throw TaskResult.failure('flutter build appbundle command exited with code: $exitCode');
118 throw TaskResult.failure('flutter build appbundle command exited with code: $exitCode');
/third_party/flutter/flutter/packages/flutter_tools/test/integration.shard/
Dflutter_run_test.dart50 expect(_proc.stdout, isNot(contains('flutter has exited unexpectedly')));
51 expect(_proc.stderr, isNot(contains('flutter has exited unexpectedly')));
/third_party/node/lib/
Dchild_process.js333 let exited = false; variable
341 if (exited) return;
342 exited = true;
/third_party/flutter/flutter/dev/bots/
Drun_command.dart70 …'${bold}ERROR:$red Last command exited with $exitCode (expected: ${expectNonZeroExit ? (expectedEx…
165 …'${bold}ERROR:$red Last command exited with $exitCode (expected: ${expectNonZeroExit ? (expectedEx…
/third_party/node/deps/npm/node_modules/signal-exit/
DREADME.md22 console.log('process exited!')
/third_party/node/doc/api/
Dcluster.md154 * `code` {number} The exit code, if it exited normally.
166 console.log(`worker exited with error code: ${code}`);
341 This property is `true` if the worker exited due to `.kill()` or
342 `.disconnect()`. If the worker exited any other way, it is `false`. If the
343 worker has not exited, it is `undefined`.
530 * `code` {number} The exit code, if it exited normally.
852 _and_ exited. The order between these two events cannot be determined in

1234567891011