Home
last modified time | relevance | path

Searched refs:fork (Results 1 – 25 of 1244) sorted by relevance

12345678910>>...50

/third_party/mesa3d/src/compiler/nir/
Dnir_lower_goto_ifs.c40 struct path_fork *fork; member
136 set_path_vars(nir_builder *b, struct path_fork *fork, nir_block *target) in set_path_vars() argument
138 while (fork) { in set_path_vars()
140 if (_mesa_set_search(fork->paths[i].reachable, target)) { in set_path_vars()
141 if (fork->is_var) { in set_path_vars()
142 nir_store_var(b, fork->path_var, nir_imm_bool(b, i), 1); in set_path_vars()
144 assert(fork->path_ssa == NULL); in set_path_vars()
145 fork->path_ssa = nir_imm_bool(b, i); in set_path_vars()
147 fork = fork->paths[i].fork; in set_path_vars()
161 set_path_vars_cond(nir_builder *b, struct path_fork *fork, nir_src condition, in set_path_vars_cond() argument
[all …]
/third_party/node/test/parallel/
Dtest-child-process-spawn-typeerror.js25 const { spawn, fork, execFile } = require('child_process');
182 fork(empty);
183 fork(empty, a);
184 fork(empty, a, o);
185 fork(empty, o);
186 fork(empty, u, u);
187 fork(empty, u, o);
188 fork(empty, a, u);
189 fork(empty, n, n);
190 fork(empty, n, o);
[all …]
Dtest-child-process-fork-timeout-kill-signal.js7 const { fork } = require('child_process');
15 const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
23 const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
32 throws(() => fork(fixtures.path('child-process-stay-alive-forever.js'), {
36 throws(() => fork(fixtures.path('child-process-stay-alive-forever.js'), {
46 const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
Dtest-child-process-fork-args.js5 const { fork } = require('child_process');
25 assert.throws(() => fork(modulePath), {
32 const cp = fork(fixtures.path('child-process-echo-options.js'));
54 fork(fixtures.path('child-process-echo-options.js'), arg);
66 const cp = fork(fixtures.path('child-process-echo-options.js'), args, {
97 fork(fixtures.path('child-process-echo-options.js'), [], arg);
Dtest-pending-deprecation.js17 const fork = require('child_process').fork; constant
41 fork(__filename, ['switch'], {
49 fork(__filename, ['switch'], {
57 fork(__filename, ['env'], {
Dtest-cluster-master-error.js65 cluster.fork();
66 cluster.fork();
70 const fork = require('child_process').fork; constant
76 const master = fork(process.argv[1], ['cluster'], { silent: true });
Dtest-cluster-disconnect-idle-worker.js26 const fork = cluster.fork; constant
29 fork(); // It is intentionally called `fork` instead of
30 fork(); // `cluster.fork` to test that `this` is not used
Dtest-child-process-fork-abort-signal.js7 const { fork } = require('child_process');
13 const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
30 const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
47 const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
64 const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), {
Dtest-cluster-uncaught-exception.js30 const fork = require('child_process').fork; constant
37 const master = fork(__filename, ['child']);
45 cluster.fork();
Dtest-child-process-fork-stdio-string-variant.js9 const fork = require('child_process').fork; constant
17 () => fork(childScript, malFormedOpts),
21 const child = fork(childScript, { stdio: stringVariant });
Dtest-cluster-bind-twice.js45 const fork = require('child_process').fork; constant
51 const a = fork(__filename, ['one']);
52 const b = fork(__filename, ['two']);
109 const worker = cluster.fork();
Dtest-cluster-master-kill.js35 const worker = cluster.fork();
52 const fork = require('child_process').fork; constant
55 const master = fork(process.argv[1], ['cluster']);
Dtest-child-process-fork-net.js29 const fork = require('child_process').fork; constant
89 const child1 = fork(process.argv[1], ['child', '1']);
90 const child2 = fork(process.argv[1], ['child', '2']);
91 const child3 = fork(process.argv[1], ['child', '3']);
Dtest-cluster-eaccess.js31 const fork = require('child_process').fork; constant
39 const worker = cluster.fork({ PIPE_NAME });
55 const cp = fork(__filename, [PIPE_NAME], { stdio: 'inherit' });
/third_party/rust/crates/syn/src/
Ddiscouraged.rs157 fn advance_to(&self, fork: &Self); in advance_to()
161 fn advance_to(&self, fork: &Self) { in advance_to()
162 if !crate::buffer::same_scope(self.cursor(), fork.cursor()) { in advance_to()
167 let (fork_unexp, fork_sp) = inner_unexpected(fork); in advance_to()
182 fork.unexpected in advance_to()
192 .set(unsafe { mem::transmute::<Cursor, Cursor<'static>>(fork.cursor()) }); in advance_to()
/third_party/musl/libc-test/src/functionalext/fortify/
Dunistd.c41 int pid = fork(); in unistd_dynamic_chk_001()
80 int pid = fork(); in unistd_dynamic_chk_002()
120 int pid = fork(); in unistd_dynamic_chk_003()
161 int pid = fork(); in unistd_dynamic_chk_004()
201 int pid = fork(); in unistd_dynamic_chk_005()
240 int pid = fork(); in unistd_dynamic_chk_006()
279 int pid = fork(); in unistd_dynamic_chk_007()
320 int pid = fork(); in unistd_dynamic_chk_008()
360 int pid = fork(); in unistd_dynamic_chk_009()
398 int pid = fork(); in unistd_dynamic_chk_010()
[all …]
Dstring_ext.c80 int pid = fork(); in test_strcat_0020()
131 int pid = fork(); in test_strncat_0020()
179 int pid = fork(); in test_stpcpy_0020()
230 int pid = fork(); in test_stpncpy_0020()
280 int pid = fork(); in test_strncpy_0020()
327 int pid = fork(); in test_memchr_0020()
374 int pid = fork(); in test_memrchr_0020()
420 int pid = fork(); in test_strchr_0020()
468 int pid = fork(); in test_strrchr_0020()
517 int pid = fork(); in test_strlcat_0020()
[all …]
Dfcntl_ext.c62 int pid = fork(); in open_0020()
96 int pid = fork(); in open_0030()
158 int pid = fork(); in openat_0020()
192 int pid = fork(); in openat_0030()
255 int pid = fork(); in open64_0020()
289 int pid = fork(); in open64_0030()
351 int pid = fork(); in openat64_0020()
385 int pid = fork(); in openat64_0030()
/third_party/musl/libc-test/src/functionalext/info/
Dfatal_message.c71 fpid = fork(); in fatal_message_0020()
105 fpid = fork(); in fatal_message_0030()
114 fpidChild = fork(); in fatal_message_0030()
156 fpid = fork(); in fatal_message_0040()
165 fpidChild = fork(); in fatal_message_0040()
243 fpid = fork(); in fatal_message_0060()
269 fpid = fork(); in fatal_message_0070()
304 if ((childPid = fork()) == 0) { in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_signal/
D1-2.c69 if (td->fork) \
78 if (td->fork) \
118 int fork; /* 0: Test between threads. ~ !0: Test across processes, if supported (mmap) */ member
203 char fork; /* the children are processes */ member
400 td->fork = 0; in main()
455 if ((pshared > 0) && (scenarii[scenar].fork != 0)) { in main()
456 td->fork = 1; in main()
490 if (td->fork == 0) { in main()
499 p_child[ch] = fork(); in main()
575 if (td->fork == 0) { in main()
/third_party/rust/crates/nix/test/sys/
Dtest_wait.rs14 match unsafe { fork() }.expect("Error: Fork Failed") { in test_wait_signal()
41 match unsafe { fork() }.expect("Error: Fork Failed") { in test_waitid_signal()
61 match unsafe { fork() }.expect("Error: Fork Failed") { in test_wait_exit()
84 match unsafe { fork() }.expect("Error: Fork Failed") { in test_waitid_exit()
115 match unsafe { fork() }.unwrap() { in test_waitstatus_pid()
134 match unsafe { fork() }.unwrap() { in test_waitid_pid()
240 match unsafe { fork() }.expect("Error: Fork Failed") { in test_wait_ptrace()
252 match unsafe { fork() }.expect("Error: Fork Failed") { in test_waitid_ptrace()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
D2-3.c46 if (td->fork) { \
54 if (td->fork) { \
87 int fork; member
149 char fork; member
354 td->fork = 0; in main()
403 if ((pshared > 0) && (scenarii[scenar].fork != 0)) in main()
404 td->fork = 1; in main()
432 if (td->fork == 0) { in main()
441 children.ch[children.nb].p = fork(); in main()
504 if (td->fork == 0) { in main()
D1-2.c53 if (td->fork) { \
65 if (td->fork) { \
104 int fork; member
165 char fork; /* the children are processes */ member
427 td->fork = 0; in main()
474 if ((pshared > 0) && (scenarii[scenar].fork != 0)) in main()
475 td->fork = 1; in main()
515 if (td->fork == 0) { in main()
544 tmp->data.p = fork(); in main()
625 if (td->fork == 0) { in main()
/third_party/node/test/sequential/
Dtest-inspector-port-cluster.js242 cluster.fork(params).on('exit', common.mustCall(checkExitCode));
251 cluster.fork(params).on('exit', common.mustCall(checkExitCode));
260 cluster.fork(params).on('exit', common.mustCall(checkExitCode));
269 cluster.fork(params).on('exit', common.mustCall(checkExitCode));
282 cluster.fork(params).on('exit', common.mustCall(checkExitCode));
295 cluster.fork(params).on('exit', common.mustCall(checkExitCode));
303 cluster.fork(params).on('exit', common.mustCall(checkExitCode));
329 childProcess.fork(__filename, {
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
Dgauger.h25 if(!(__gauger_p=fork())){\
26 if(!fork()){ \
53 if(!(__gauger_p=fork())){\
54 if(!fork()){\

12345678910>>...50