Searched refs:wxPipe (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/unix/
H A Dpipe.h3 // Purpose: wxPipe class
21 // wxPipe: this class encapsulates pipe() system call
24 class wxPipe class
40 wxPipe() { m_fds[Read] = m_fds[Write] = INVALID_FD; } function in class:wxPipe
85 ~wxPipe() { Close(); }
H A Dapptbase.h16 class wxPipe;
39 // ensure that the write end of the pipe is not closed by wxPipe dtor
H A Dexecute.h56 wxPipe pipeEndProcDetect;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dutilsexc.cpp197 // wxPipe represents a Win32 anonymous pipe
200 class wxPipe class
211 wxPipe() { m_handles[Read] = m_handles[Write] = INVALID_HANDLE_VALUE; } function in class:wxPipe
263 ~wxPipe() { Close(); }
649 wxPipe pipeIn, pipeOut, pipeErr;
681 si.hStdInput = pipeIn[wxPipe::Read];
682 si.hStdOutput = pipeOut[wxPipe::Write];
683 si.hStdError = pipeErr[wxPipe::Write];
699 HANDLE pipeInWrite = pipeIn.Detach(wxPipe::Write);
757 ::CloseHandle(pipeIn.Detach(wxPipe
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Dutilsunx.cpp517 wxPipe pipeIn, // stdin
564 if ( fd == pipeIn[wxPipe::Read]
565 || fd == pipeOut[wxPipe::Write]
566 || fd == pipeErr[wxPipe::Write]
595 if ( dup2(pipeIn[wxPipe::Read], STDIN_FILENO) == -1 ||
596 dup2(pipeOut[wxPipe::Write], STDOUT_FILENO) == -1 ||
597 dup2(pipeErr[wxPipe::Write], STDERR_FILENO) == -1 )
648 new wxFileOutputStream(pipeIn.Detach(wxPipe::Write));
651 new wxPipeInputStream(pipeOut.Detach(wxPipe::Read));
654 new wxPipeInputStream(pipeErr.Detach(wxPipe
[all...]

Completed in 108 milliseconds