| /third_party/vk-gl-cts/framework/delibs/deutil/ |
| D | deProcess.c | 21 * \brief Process abstraction. 66 printf("Process launch failed: %s\n", message); in die() 138 deProcess* process = (deProcess*)deCalloc(sizeof(deProcess)); in deProcess_create() local 139 if (!process) in deProcess_create() 142 process->state = PROCESSSTATE_NOT_STARTED; in deProcess_create() 144 return process; in deProcess_create() 147 static void deProcess_cleanupHandles (deProcess* process) in deProcess_cleanupHandles() argument 149 if (process->standardIn) in deProcess_cleanupHandles() 150 deFile_destroy(process->standardIn); in deProcess_cleanupHandles() 152 if (process->standardOut) in deProcess_cleanupHandles() [all …]
|
| D | deProcess.h | 23 * \brief Process abstraction. 31 /* Process types. */ 35 void deProcess_destroy (deProcess* process); 37 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirect… 38 deBool deProcess_isRunning (deProcess* process); 39 deBool deProcess_waitForFinish (deProcess* process); 41 const char* deProcess_getLastError (const deProcess* process); 42 int deProcess_getExitCode (const deProcess* process); 45 deBool deProcess_terminate (deProcess* process); 46 deBool deProcess_kill (deProcess* process); [all …]
|
| /third_party/icu/icu4c/source/data/translit/ |
| D | root.txt | 15 resource:process(transliterator){"Latin_ASCII.txt"} 21 resource:process(transliterator){"Any_Accents.txt"} 30 resource:process(transliterator){"Any_Accents.txt"} 36 resource:process(transliterator){"Any_Publishing.txt"} 42 resource:process(transliterator){"Arab_Latn.txt"} 60 resource:process(transliterator){"Latn_Armn.txt"} 72 resource:process(transliterator){"Beng_Arab.txt"} 78 resource:process(transliterator){"Beng_Deva.txt"} 84 resource:process(transliterator){"Beng_Gujr.txt"} 90 resource:process(transliterator){"Beng_Guru.txt"} [all …]
|
| /third_party/rust/crates/rustix/tests/process/ |
| D | id.rs | 1 use rustix::process; 5 assert_eq!(process::getuid(), process::getuid()); in test_getuid() 7 assert_eq!(process::getuid().as_raw(), libc::getuid()); in test_getuid() 8 assert_eq!(process::getuid().is_root(), libc::getuid() == 0); in test_getuid() 14 assert_eq!(process::getgid(), process::getgid()); in test_getgid() 16 assert_eq!(process::getgid().as_raw(), libc::getgid()); in test_getgid() 17 assert_eq!(process::getgid().is_root(), libc::getgid() == 0); in test_getgid() 23 assert_eq!(process::geteuid(), process::geteuid()); in test_geteuid() 25 assert_eq!(process::geteuid().as_raw(), libc::geteuid()); in test_geteuid() 26 assert_eq!(process::geteuid().is_root(), libc::geteuid() == 0); in test_geteuid() [all …]
|
| /third_party/skia/third_party/externals/icu/source/data/translit/ |
| D | root.txt | 15 resource:process(transliterator){"Latin_ASCII.txt"} 21 resource:process(transliterator){"Any_Accents.txt"} 30 resource:process(transliterator){"Any_Accents.txt"} 36 resource:process(transliterator){"Any_Publishing.txt"} 42 resource:process(transliterator){"Arab_Latn.txt"} 60 resource:process(transliterator){"Latn_Armn.txt"} 72 resource:process(transliterator){"Beng_Arab.txt"} 78 resource:process(transliterator){"Beng_Deva.txt"} 84 resource:process(transliterator){"Beng_Gujr.txt"} 90 resource:process(transliterator){"Beng_Guru.txt"} [all …]
|
| /third_party/ltp/testcases/kernel/controllers/freezer/ |
| D | 00_description.txt | 2 This bash script tests freezer code by starting a long sleep process. 4 After we cancel the sleep process should eventually reach the thawed 5 state. We expect the process to still be alive as we cleanup the test. 8 This bash script tests freezer code by starting a long sleep process. 9 The sleep process is frozen. We then kill the sleep process. 10 Then we unfreeze the sleep process and see what happens. We expect the 11 sleep process to receive the kill signals and exit almost immediately 15 This bash script tests freezer code by starting a long sleep process. 16 The sleep process is frozen. We then move the sleep process to a THAWED 17 cgroup. We expect moving the sleep process to fail. [all …]
|
| /third_party/iptables/ |
| D | OAT.xml | 34 …es. For example, "!.*/lib/.*" means files in lib dir will be exclude while process this policyitem. 73 <policy name="defaultPolicy" desc="use iptables by independent process"> 74 … group="defaultGroup" filefilter="defaultPolicyFilter" desc="use iptables by independent process"/> 75 … group="defaultGroup" filefilter="defaultPolicyFilter" desc="use iptables by independent process"/> 76 … group="defaultGroup" filefilter="defaultPolicyFilter" desc="use iptables by independent process"/> 77 … group="defaultGroup" filefilter="defaultPolicyFilter" desc="use iptables by independent process"/> 78 … group="defaultGroup" filefilter="defaultPolicyFilter" desc="use iptables by independent process"/> 79 … group="defaultGroup" filefilter="defaultPolicyFilter" desc="use iptables by independent process"/> 80 … group="defaultGroup" filefilter="defaultPolicyFilter" desc="use iptables by independent process"/> 81 … group="defaultGroup" filefilter="defaultPolicyFilter" desc="use iptables by independent process"/> [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/ |
| D | assertions.xml | 3 fork() creates a new process. 6 The new process is a copy of the original process 10 The new process' ID does not match any existing 11 process or group ID. 14 The parent process ID (ppid) of the child process 15 is the process ID (pid) of the parent process 19 The opened file descriptors are copied to the child process 23 The opened directory streams are copied to the child process. 27 The child process gets a copy of the parent message catalog descriptor. 31 are set to 0 in the child process. [all …]
|
| /third_party/elfutils/libdwfl/ |
| D | dwfl_frame.c | 50 Ebl *ebl = state->thread->process->ebl; in state_fetch_pc() 89 Ebl *ebl = thread->process->ebl; in state_alloc() 109 __libdwfl_process_free (Dwfl_Process *process) in __libdwfl_process_free() argument 111 Dwfl *dwfl = process->dwfl; in __libdwfl_process_free() 112 if (process->callbacks->detach != NULL) in __libdwfl_process_free() 113 process->callbacks->detach (dwfl, process->callbacks_arg); in __libdwfl_process_free() 114 assert (dwfl->process == process); in __libdwfl_process_free() 115 dwfl->process = NULL; in __libdwfl_process_free() 116 if (process->ebl_close) in __libdwfl_process_free() 117 ebl_closebackend (process->ebl); in __libdwfl_process_free() [all …]
|
| /third_party/typescript/scripts/build/ |
| D | options.mjs | 4 const ci = ["1", "true"].includes(process.env.CI ?? ""); 6 const parsed = minimist(process.argv.slice(2), { 24 colors: process.env.colors || process.env.color || true, 25 debug: process.env.debug || process.env["debug-brk"] || process.env.d, 26 inspect: process.env.inspect || process.env["inspect-brk"] || process.env.i, 27 host: process.env.TYPESCRIPT_HOST || process.env.host || "node", 28 … browser: process.env.browser || process.env.b || (os.platform() === "win32" ? "edge" : "chrome"), 29 timeout: process.env.timeout || 40000, 30 tests: process.env.test || process.env.tests || process.env.t, 31 runners: process.env.runners || process.env.runner || process.env.ru, [all …]
|
| /third_party/rust/crates/rustix/src/process/ |
| D | wait.rs | 1 use crate::process::Pid; 9 const NOHANG = backend::process::wait::WNOHANG as _; 11 const UNTRACED = backend::process::wait::WUNTRACED as _; 13 const CONTINUED = backend::process::wait::WCONTINUED as _; 34 /// Returns whether the process is currently stopped. 37 backend::process::wait::WIFSTOPPED(self.0 as _) in stopped() 40 /// Returns whether the process has continued from a job control stop. 43 backend::process::wait::WIFCONTINUED(self.0 as _) in continued() 46 /// Returns the number of the signal that stopped the process, 47 /// if the process was stopped by a signal. [all …]
|
| D | procctl.rs | 11 use crate::backend::process::syscalls; 12 use crate::backend::process::types::{RawId, Signal}; 14 use crate::process::{Pid, RawPid}; 23 /// Process id. 25 /// Process group id. 29 /// A process selector for use with the `procctl` interface. 31 /// `None` represents the current process. `Some((IdType::Pid, pid))` represents the process 33 /// the process group with id `pgid`. 45 process: ProcSelector, in procctl() 48 let (idtype, id) = proc_selector_to_raw(process); in procctl() [all …]
|
| /third_party/mindspore/mindspore-src/source/docs/api/api_python_en/ |
| D | mindspore.multiprocessing.md | 9 …process waits for the internal thread task to finish executing before the fork, and actively holds… 10 - After fork occurs, the parent process releases the actively held GIL lock. 11 - After fork occurs, the child process releases the actively held GIL lock, then restores and clean… 13 The above process is not triggered when creating a multiprocess without using fork. At this point, … 32 p = multiprocessing.Process(target=child_process) 43 A sample of creating a process pool using mindspore.multiprocessing is shown below: 65 … is not mindspore.multiprocessing, there may be a problem that the child process is stuck due to t… 71 # Child process may be stuck when using 'import multiprocessing' . 81 print("parent process:ops.log(Tensor(2.0))=", ops.log(Tensor(2.0))) 83 p = multiprocessing.Process(target=child_process, args=(q,)) [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/ |
| D | assertions.xml | 13 If a process specified by pid exists, and if the calling process has 14 permission, the scheduling parameters shall be set for the process whose 15 process ID is equal to pid 19 process 22 The conditions under which one process has permission to change the 23 scheduling parameters of another process are implementation-defined 26 Implementations may require the requesting process to have the appropriate 27 privilege to set its own scheduling parameters or those of another process 30 The target process, whether it is running or not running, shall be moved to 34 If the priority of the process specified by the pid argument is set higher [all …]
|
| /third_party/python/Doc/library/ |
| D | asyncio-subprocess.rst | 70 wrappers for :attr:`Process.stdout` and :attr:`Process.stderr` 73 Return a :class:`~asyncio.subprocess.Process` instance. 88 wrappers for :attr:`Process.stdout` and :attr:`Process.stderr` 91 Return a :class:`~asyncio.subprocess.Process` instance. 132 :attr:`Process.stdin <asyncio.subprocess.Process.stdin>` attribute 136 :attr:`Process.stdout <asyncio.subprocess.Process.stdout>` and 137 :attr:`Process.stderr <asyncio.subprocess.Process.stderr>` 150 to process creation functions. It indicates that the special file 158 functions return instances of the *Process* class. *Process* is a high-level 162 .. class:: asyncio.subprocess.Process [all …]
|
| D | multiprocessing.rst | 1 :mod:`multiprocessing` --- Process-based parallelism 5 :synopsis: Process-based parallelism. 51 to push tasks to a background process without blocking execution of the 52 calling process. Compared to using the :class:`~multiprocessing.pool.Pool` 54 the submission of work to the underlying process pool to be separated from 58 The :class:`Process` class 61 In :mod:`multiprocessing`, processes are spawned by creating a :class:`Process` 62 object and then calling its :meth:`~Process.start` method. :class:`Process` 66 from multiprocessing import Process 72 p = Process(target=f, args=('bob',)) [all …]
|
| /third_party/python/Lib/multiprocessing/ |
| D | process.py | 2 # Module providing the `Process` class which emulates `threading.Thread` 4 # multiprocessing/process.py 39 Return process object representing the current process 45 Return list of process objects corresponding to live child processes 53 Return process object representing the parent process 68 # The `Process` class 73 Process objects represent activity that is run in a separate process 101 raise ValueError("process object is closed") 105 Method to be run in sub-process; can be overridden in sub-class 112 Start child process [all …]
|
| /third_party/skia/third_party/externals/icu/source/data/brkitr/ |
| D | root.txt | 6 grapheme:process(dependency){"char.brk"} 7 line:process(dependency){"line_normal.brk"} 8 line_loose:process(dependency){"line_loose.brk"} 9 line_normal:process(dependency){"line_normal.brk"} 10 line_strict:process(dependency){"line.brk"} 11 sentence:process(dependency){"sent.brk"} 12 title:process(dependency){"title.brk"} 13 word:process(dependency){"word.brk"} 16 Hani:process(dependency){"cjdict.dict"} 17 Hira:process(dependency){"cjdict.dict"} [all …]
|
| /third_party/typescript/scripts/ |
| D | open-cherry-pick-pr.mjs | 10 const userName = process.env.GH_USERNAME; 11 const reviewers = process.env.REQUESTING_USER ? [process.env.REQUESTING_USER] : ["weswigham", "Ryan… 12 const branchName = `pick/${process.env.SOURCE_ISSUE}/${process.env.TARGET_BRANCH}`; 13 const remoteUrl = `https://${process.argv[2]}@github.com/${userName}/TypeScript.git`; 14 const produceLKG = !!process.env.PRODUCE_LKG; 17 if (!process.env.TARGET_BRANCH) { 20 if (!process.env.SOURCE_ISSUE) { 31 auth: process.argv[2] 34 …const inputPR = (await gh.pulls.get({ pull_number: +process.env.SOURCE_ISSUE, owner: "microsoft", … 49 logText = `Cherry-pick PR #${process.env.SOURCE_ISSUE} into ${process.env.TARGET_BRANCH} [all …]
|
| /third_party/skia/third_party/externals/angle2/util/ |
| D | test_utils_unittest.cpp | 160 ProcessHandle process(args, ProcessOutputCapture::StdoutAndStderrSeparately); in TEST() local 161 EXPECT_TRUE(process->started()); in TEST() 162 EXPECT_TRUE(process->finish()); in TEST() 163 EXPECT_TRUE(process->finished()); in TEST() 165 EXPECT_GT(process->getElapsedTimeSeconds(), 0.0); in TEST() 166 EXPECT_EQ(kRunAppTestStdout, NormalizeNewLines(process->getStdout())); in TEST() 167 EXPECT_EQ(kRunAppTestStderr, NormalizeNewLines(process->getStderr())); in TEST() 168 EXPECT_EQ(EXIT_SUCCESS, process->getExitCode()); in TEST() 176 ProcessHandle process(LaunchProcess(args, ProcessOutputCapture::StdoutAndStderrSeparately)); in TEST() local 177 EXPECT_TRUE(process->started()); in TEST() [all …]
|
| /third_party/icu/icu4c/source/data/brkitr/ |
| D | root.txt | 7 grapheme:process(dependency){"char.brk"} 8 line:process(dependency){"line.brk"} 9 line_loose:process(dependency){"line_loose.brk"} 10 line_normal:process(dependency){"line_normal.brk"} 11 line_strict:process(dependency){"line.brk"} 12 sentence:process(dependency){"sent.brk"} 13 title:process(dependency){"title.brk"} 14 word:process(dependency){"word.brk"} 17 Hani:process(dependency){"cjdict.dict"} 18 Hira:process(dependency){"cjdict.dict"} [all …]
|
| /third_party/mindspore/mindspore-src/source/docs/api/api_python/ |
| D | mindspore.multiprocessing.md | 32 p = multiprocessing.Process(target=child_process) 71 # Child process may be stuck when using 'import multiprocessing' . 81 print("parent process:ops.log(Tensor(2.0))=", ops.log(Tensor(2.0))) 83 p = multiprocessing.Process(target=child_process, args=(q,)) 85 print("child process:ops.log(Tensor(2.0))=", q.get()) 92 parent process:ops.log(Tensor(2.0))= 0.6931472 93 child process:ops.log(Tensor(2.0))= 0.6931472 109 # Child process may not be able to acquire resources when start_method is set to 'spawn' . 111 print("parent process:ops.log(Tensor(2.0))=", ops.log(Tensor(2.0))) 113 p = multiprocessing.Process(target=child_process, args=(q,)) [all …]
|
| /third_party/libuv/docs/src/ |
| D | process.rst | 4 :c:type:`uv_process_t` --- Process handle 7 Process handles will spawn a new process and allow the user to control it and 16 Process handle type. 20 Options for spawning the process (passed to :c:func:`uv_spawn`. 40 will indicate the exit status and the signal that caused the process to 51 * Set the child process' user id. 55 * Set the child process' group id. 65 * Spawn the child process in a detached state - this will make it a process 67 * the parent exits. Note that the child process will still keep the 68 * parent's event loop alive unless the parent process calls uv_unref() on [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/kill/ |
| D | assertions.xml | 3 The kill function sends a signal (sig) to a process or group of processes 11 If the real or effective user ID of the sending process does not match the real 12 or saved set-user-ID of the receiving process (pid), the kill function 16 For pid > 0, sig is sent to process ID pid. 20 set of system processes) where process group ID == process group ID of sender. 21 The sending process must also have permission to send a signal to the 22 receiving process. 26 set of system processes). The sending process must have permission 27 to send signal sig to the receiving process. 31 an unspecified set of system processes) where process group ID == absolute [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/ |
| D | assertions.xml | 4 the process specified by pid to policy and the parameters specified in the 11 If a process specified by pid exists, and if the calling process has 13 the process whose process ID is equal to pid 17 for the calling process 20 The condition under which one process has the appropriate privilege to 21 change the scheduling parameters of another process are 25 Implementations may require that the requesting process have permission to 26 set its own scheduling parameters or those of another process 30 privileges required to set a process' own scheduling policy, or another 31 process' scheduling policy, to a particular value [all …]
|