Searched refs:child_r (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Lib/multiprocessing/ |
D | popen_spawn_posix.py | 51 parent_r = child_w = child_r = parent_w = None 54 child_r, parent_w = os.pipe() 56 pipe_handle=child_r) 57 self._fds.extend([child_r, child_w]) 66 for fd in (child_r, child_w, parent_w):
|
D | forkserver.py | 70 child_r, parent_w = os.pipe() 71 allfds = [child_r, child_w, self._forkserver_alive_fd, 82 os.close(child_r) 248 child_r, child_w, *fds = fds 259 code = _serve_one(child_r, fds, 275 os.close(child_r) 284 def _serve_one(child_r, fds, unused_fds, handlers): argument 297 code = spawn._main(child_r)
|