Searched refs:p2cread (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/ |
D | subprocess.py | 830 (p2cread, p2cwrite, 969 p2cread, p2cwrite, 986 to_close.append(p2cread) 1223 p2cread, p2cwrite, argument 1231 if p2cread != -1: 1232 stack.callback(p2cread.Close) 1238 if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd: 1239 stack.callback(os.close, p2cread) 1262 p2cread, p2cwrite = -1, -1 1267 p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE) [all …]
|
/third_party/python/Modules/ |
D | _posixsubprocess.c | 459 int p2cread, int p2cwrite, in child_exec() argument 511 if (p2cread == 0) { in child_exec() 512 if (_Py_set_inheritable_async_safe(p2cread, 1, NULL) < 0) in child_exec() 515 else if (p2cread != -1) in child_exec() 516 POSIX_CALL(dup2(p2cread, 0)); /* stdin */ in child_exec() 658 int p2cread, int p2cwrite, in do_fork_exec() argument 708 p2cread, p2cwrite, c2pread, c2pwrite, in do_fork_exec() 729 int p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite; in subprocess_fork_exec() local 750 &p2cread, &p2cwrite, &c2pread, &c2pwrite, in subprocess_fork_exec() 954 p2cread, p2cwrite, c2pread, c2pwrite, in subprocess_fork_exec()
|