Searched refs:wxProcess (Results 1 - 25 of 27) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dprocess.cpp35 IMPLEMENT_DYNAMIC_CLASS(wxProcess, wxEvtHandler)
39 // wxProcess implementation
43 // wxProcess creation
46 void wxProcess::Init(wxEvtHandler *parent, int id, int flags)
63 wxProcess *wxProcess::Open(const wxString& cmd, int flags)
66 wxProcess *process = new wxProcess(wxPROCESS_REDIRECT);
81 // wxProcess termination
84 wxProcess
[all...]
H A Dutilscmn.cpp681 // create a wxProcess which will capture the output
682 wxProcess *process = new wxProcess;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/unix/
H A Dexecute.h15 class WXDLLIMPEXP_BASE wxProcess; variable in typeref:class:WXDLLIMPEXP_BASE
25 wxProcess *process; // if !NULL: notified on process termination
53 wxProcess *process;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DTerminationProcess.h36 class CTerminationProcess : public wxProcess
H A DTerminationProcess.cpp39 wxProcess(),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dutilsexc.cpp90 long wxExecute(const wxString& cmd, int flags, wxProcess *handler)
95 long wxExecute(wxChar **argv, int flags, wxProcess *handler)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dprocess.h3 // Purpose: wxProcess class
23 // the wxProcess creation flags
34 // A wxProcess object should be passed to wxExecute - than its OnTerminate()
38 class WXDLLIMPEXP_BASE wxProcess : public wxEvtHandler class in inherits:wxEvtHandler
54 static wxProcess *Open(const wxString& cmd, int flags = wxEXEC_ASYNC);
58 wxProcess(wxEvtHandler *parent = (wxEvtHandler *) NULL, int nId = wxID_ANY) function in class:wxProcess
61 wxProcess(int flags) { Init(NULL, wxID_ANY, flags); } function in class:wxProcess
63 virtual ~wxProcess();
125 DECLARE_DYNAMIC_CLASS(wxProcess)
126 DECLARE_NO_COPY_CLASS(wxProcess)
[all...]
H A Dutils.h49 class WXDLLIMPEXP_FWD_BASE wxProcess; variable in typeref:class:WXDLLIMPEXP_FWD_BASE
360 wxProcess *process = (wxProcess *) NULL);
362 wxProcess *process = (wxProcess *) NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dutilsexc.cpp23 long wxExecute(const wxString& command, int flags, wxProcess *WXUNUSED(handler))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dprocess.tex1 \section{\class{wxProcess}}\label{wxprocess}
4 \helpref{wxExecute}{wxexecute} function. When a wxProcess object is passed to
12 parent, it is responsible for deleting the wxProcess object which sent it.
17 wxProcess also supports IO redirection of the child process. For this, you have
44 \membersection{wxProcess::wxProcess}\label{wxprocessctor}
46 \func{}{wxProcess}{\param{wxEvtHandler *}{ parent = NULL}, \param{int}{ id = -1}}
48 \func{}{wxProcess}{\param{int }{flags}}
72 \membersection{wxProcess::\destruct{wxProcess}}\labe
[all...]
H A Dprocevt.tex22 {\it id} is the identifier of the process object (the id passed to the wxProcess constructor)
28 \helpref{wxProcess}{wxprocess},\rtfsp
H A DwxPython.tex409 \item \helpref{wxProcess}{wxprocess}
H A Dtsamples.tex258 \helpref{wxProcess::Kill}{wxprocesskill} and test for their existence with
259 \helpref{wxProcess::Exists}{wxprocessexists}.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dutilsexc.cpp69 wxProcess* pHandler;
131 wxProcess* pHandler)
175 wxASSERT_MSG(!pHandler, wxT("wxProcess param ignored for sync execution"));
221 , wxProcess* pHandler
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/mmedia/
H A Dvidxanm.h74 wxProcess *m_xanim_detector;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/helpview/src/
H A Dremhelp.h81 wxProcess *m_process;
H A Dremhelp.cpp193 m_process = new wxProcess(NULL);
284 if ( wxProcess::Exists(m_pid) )
291 wxKillError rc = wxProcess::Kill(m_pid, (wxSignal)sig);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/exec/
H A Dexec.cpp191 wxProcess *process);
223 wxProcess *m_process;
237 // wxProcess-derived classes
241 class MyProcess : public wxProcess
245 : wxProcess(parent), m_cmd(cmd)
577 if ( wxProcess::Exists(pid) )
584 wxKillError rc = wxProcess::Kill(pid, (wxSignal)sig);
612 wxProcess *process = new MyProcess(this, cmd);
776 wxProcess *process = wxProcess
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/mmedia/
H A Dvidxanm.cpp46 class wxVideoXANIMProcess: public wxProcess {
56 class wxVideoXANIMOutput: public wxProcess {
82 : wxProcess(NULL, wxID_ANY)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/corefoundation/
H A Dutilsexc_base.cpp63 wxProcess *process)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dutilsexc.cpp123 wxProcess *handler;
539 long wxExecute(const wxString& cmd, int flags, wxProcess *handler)
951 long wxExecute(wxChar **argv, int flags, wxProcess *handler)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dutilsexc.cpp123 long wxExecute(const wxString& command, int flags, wxProcess *WXUNUSED(handler))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msdos/
H A Dutilsdos.cpp304 long wxExecute(const wxString& command, int flags, wxProcess *process)
427 long wxExecute(wxChar **argv, int flags, wxProcess *process)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Dutilsunx.cpp259 wxProcess *process);
262 long wxExecute( const wxString& command, int flags, wxProcess *process )
459 long wxExecute(wxChar **argv, int flags, wxProcess *process)
H A Ddialup.cpp212 // a wxProcess for dialling in background
262 class wxDialProcess : public wxProcess

Completed in 313 milliseconds

12