Home
last modified time | relevance | path

Searched refs:p2cwrite (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
Dsubprocess.py384 (p2cread, p2cwrite,
392 p2cread, p2cwrite,
411 if p2cwrite is not None:
412 p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0)
418 if p2cwrite is not None:
419 self.stdin = os.fdopen(p2cwrite, 'wb', bufsize)
504 p2cread, p2cwrite = None, None
513 p2cread, p2cwrite = _subprocess.CreatePipe(None, 0)
523 to_close.add(p2cwrite)
561 return (p2cread, p2cwrite,
[all …]
Dpopen2.py52 p2cread, p2cwrite = os.pipe()
65 self.tochild = os.fdopen(p2cwrite, 'w', bufsize)
122 p2cread, p2cwrite = os.pipe()
132 self.tochild = os.fdopen(p2cwrite, 'w', bufsize)
/external/python/cpython3/Lib/
Dsubprocess.py823 (p2cread, p2cwrite,
832 if p2cwrite != -1:
833 p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0)
930 if p2cwrite != -1:
931 self.stdin = io.open(p2cwrite, 'wb', bufsize)
950 p2cread, p2cwrite,
1204 p2cread, p2cwrite, argument
1219 if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd:
1243 p2cread, p2cwrite = -1, -1
1254 p2cread, p2cwrite = _winapi.CreatePipe(None, 0)
[all …]
/external/python/cpython3/Modules/
D_posixsubprocess.c436 int p2cread, int p2cwrite, in child_exec() argument
459 if (p2cwrite != -1) in child_exec()
460 POSIX_CALL(close(p2cwrite)); in child_exec()
622 int p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite; in subprocess_fork_exec() local
643 &p2cread, &p2cwrite, &c2pread, &c2pwrite, in subprocess_fork_exec()
866 p2cread, p2cwrite, c2pread, c2pwrite, in subprocess_fork_exec()
/external/python/cpython2/Demo/tkinter/guido/
DShellWindow.py108 p2cread, p2cwrite = os.pipe()
132 return pid, c2pread, p2cwrite
/external/python/cpython2/Lib/test/
Dtest_subprocess.py891 p2cread, p2cwrite, argument
899 p2cread, p2cwrite,
911 fd, (p2cwrite, c2pread, errread))