Searched refs:parent_process (Results 1 – 11 of 11) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/cxx_api/model/model_converter_utils/ |
D | multi_process.cc | 37 Status MultiProcess::MainProcess(const ProcessFuncCall &parent_process, const ProcessFuncCall &chil… in MainProcess() argument 38 MS_EXCEPTION_IF_NULL(parent_process); in MainProcess() 77 ret = ParentProcess(parent_process); in MainProcess() 101 Status MultiProcess::ParentProcess(const ProcessFuncCall &parent_process) { in ParentProcess() argument 109 ret = parent_process(this); in ParentProcess()
|
D | multi_process.h | 42 Status MainProcess(const ProcessFuncCall &parent_process, const ProcessFuncCall &child_process); 59 Status ParentProcess(const ProcessFuncCall &parent_process);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_unlink/ |
D | 2-1.c | 47 static int parent_process(char *mqname, int read_pipe, int write_pipe, pid_t child_pid); 91 return parent_process(mqname, to_parent[PIPE_READ], in main() 96 static int parent_process(char *mqname, int read_pipe, int write_pipe, in parent_process() function
|
D | 2-2.c | 42 static int parent_process(char *mqname, int read_pipe, int write_pipe, pid_t child_pid); 86 return parent_process(mqname, to_parent[PIPE_READ], in main() 91 static int parent_process(char *mqname, int read_pipe, int write_pipe, in parent_process() function
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_close/ |
D | 2-1.c | 38 static int parent_process(char *qname, int read_pipe, int write_pipe, pid_t child_pid); 88 return parent_process(qname, to_parent[PIPE_READ], in main() 95 static int parent_process(char *qname, int read_pipe, int write_pipe, in parent_process() function
|
/third_party/mindspore/mindspore/ccsrc/cxx_api/model/acl/ |
D | model_converter.cc | 143 auto parent_process = [&func_graph, &buffer_ret, this](MultiProcess *multi_process) -> Status { in LoadMindIR() local 203 auto status = multi_process.MainProcess(parent_process, child_process); in LoadMindIR()
|
/third_party/python/Lib/multiprocessing/ |
D | context.py | 38 parent_process = staticmethod(process.parent_process) variable in BaseContext
|
D | process.py | 51 def parent_process(): function
|
/third_party/python/Lib/test/ |
D | _test_multiprocessing.py | 276 self.assertIsNone(self.parent_process()) 289 from multiprocessing.process import parent_process 290 wconn.send([parent_process().pid, parent_process().name]) 325 from multiprocessing.process import parent_process 326 wconn.send("alive" if parent_process().is_alive() else "not alive") 327 parent_process().join(timeout=support.SHORT_TIMEOUT) 328 wconn.send("alive" if parent_process().is_alive() else "not alive") 5737 parent_process = staticmethod(multiprocessing.parent_process) variable in ProcessesMixin
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0b1.rst | 889 using multiprocessing.process.parent_process
|
/third_party/python/Doc/library/ |
D | multiprocessing.rst | 966 .. function:: parent_process() 969 the :func:`current_process`. For the main process, ``parent_process`` will
|