Home
last modified time | relevance | path

Searched refs:c2pwrite (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/
Dsubprocess.py831 c2pread, c2pwrite,
970 c2pread, c2pwrite,
988 to_close.append(c2pwrite)
1224 c2pread, c2pwrite, argument
1233 if c2pwrite != -1:
1234 stack.callback(c2pwrite.Close)
1240 if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd:
1241 stack.callback(os.close, c2pwrite)
1263 c2pread, c2pwrite = -1, -1
1285 c2pwrite = _winapi.GetStdHandle(_winapi.STD_OUTPUT_HANDLE)
[all …]
/third_party/python/Modules/
D_posixsubprocess.c460 int c2pread, int c2pwrite, in child_exec() argument
493 if (c2pwrite == 0) { in child_exec()
494 POSIX_CALL(c2pwrite = dup(c2pwrite)); in child_exec()
496 if (_Py_set_inheritable_async_safe(c2pwrite, 0, NULL) < 0) { in child_exec()
518 if (c2pwrite == 1) { in child_exec()
519 if (_Py_set_inheritable_async_safe(c2pwrite, 1, NULL) < 0) in child_exec()
522 else if (c2pwrite != -1) in child_exec()
523 POSIX_CALL(dup2(c2pwrite, 1)); /* stdout */ in child_exec()
659 int c2pread, int c2pwrite, in do_fork_exec() argument
708 p2cread, p2cwrite, c2pread, c2pwrite, in do_fork_exec()
[all …]