/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_session.c | 24 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/node/lib/internal/main/ |
H A D | watch_mode.js | 50 let exited; 53 exited = false; 58 exited = true; 72 if ((child.killed || exited) && !force) {
|
/third_party/ltp/lib/ |
H A D | tst_status.c | 14 const char *exited(int status) in exited() function 16 snprintf(buf, sizeof(buf), "exited with %i", WEXITSTATUS(status)); in exited() 39 return exited(status); in tst_strstatus()
|
/third_party/node/test/parallel/ |
H A D | test-cluster-send-handle-twice.js | 38 assert.strictEqual(code, 0, `Worker exited with an error code: ${code}`); 39 assert.strictEqual(signal, null, `Worker exited by a signal: ${signal}`);
|
H A D | test-cluster-bind-twice.js | 57 throw new Error(`A exited with ${c}`); 64 throw new Error(`B exited with ${c}`);
|
H A D | test-process-exit-code.js | 53 debug(`ok - ${arg} exited with ${exit}`);
|
H A D | test-worker-exit-code.js | 34 console.log(`ok - ${arg} exited with ${exit}`);
|
H A D | test-http-chunk-problem.js | 87 console.error(`subprocess exited with code ${code}`);
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_waitfor.py | 21 self.exited = False 36 self.exited = True 50 self.assertTrue(t.exited) 60 self.assertTrue(t.exited)
|
/third_party/googletest/googletest/test/ |
H A D | gtest_xml_output_unittest.py | 308 self.assert_(p.exited) 333 self.assert_(p.exited) 335 "'%s' exited with code %s, which doesn't match " 386 self.assert_(p.exited) 388 "'%s' exited with code %s, which doesn't match "
|
H A D | gtest_test_utils.py | 214 exited True if and only if the child process exited 216 exit_code The code with which the child process exited. 236 self.exited = False 239 self.exited = True
|
H A D | googletest-uninitialized-test.py | 56 if p.exited and p.exit_code == 0:
|
H A D | googletest-json-output-unittest.py | 809 self.assert_(p.exited) 835 self.assert_(p.exited) 837 "'%s' exited with code %s, which doesn't match " 876 self.assert_(p.exited) 878 "'%s' exited with code %s, which doesn't match "
|
H A D | gtest_list_output_unittest.py | 261 self.assertTrue(p.exited)
|
H A D | googletest-throw-on-failure-test.py | 73 return p.exited and p.exit_code == 0
|
H A D | googletest-json-outfiles-test.py | 174 self.assert_(p.exited)
|
H A D | googletest-color-test.py | 64 return not p.exited or p.exit_code
|
H A D | gtest_xml_outfiles_test.py | 111 self.assert_(p.exited)
|
/third_party/rust/crates/nix/src/sys/ |
H A D | wait.rs | 89 /// The process exited normally (as with `exit()` or returning from 148 fn exited(status: i32) -> bool { in exited() functions 213 Ok(if exited(status) { in from_raw()
|
/third_party/node/lib/ |
H A D | child_process.js | 373 let exited = false; 381 if (exited) return; 382 exited = true;
|
/third_party/node/test/sequential/ |
H A D | test-tls-psk-client.js | 37 `'${server.spawnfile} ${server.spawnargs.join(' ')}' unexpected exited with output:\n${serverOut}\n${serverErr}`);
|
/third_party/libfuse/lib/ |
H A D | fuse_i.h | 46 volatile int exited; member
|
/third_party/node/deps/npm/test/lib/commands/ |
H A D | help.js | 218 await t.rejects(help.exec(['whoami']), /help process exited with code: SPAWN_ERR/)
|
/third_party/ntfs-3g/include/fuse-lite/ |
H A D | fuse_lowlevel.h | 1173 * @param val exited status (1 - exited, 0 - not exited) 1178 * Hook for querying the current exited status (optional) 1181 * @return 1 if exited, 0 if not exited 1183 int (*exited) (void *data); member 1264 * Reset the exited status of a session 1271 * Query the exited status of a session 1274 * @return 1 if exited, [all...] |
/third_party/node/test/common/ |
H A D | index.js | 242 `but instead exited with exit code ${exitCode}` +
|