Searched refs:wxExecute (Results 1 - 25 of 34) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dutilsexc.cpp3 // Purpose: wxExecute implementation for PalmOS
49 #include "wx/dde.h" // for WX_DDE hack in wxExecute
75 // wxExecute functions family
90 long wxExecute(const wxString& cmd, int flags, wxProcess *handler) function
95 long wxExecute(wxChar **argv, int flags, wxProcess *handler) function
/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)) function
26 wxT("wxExecute: Only wxEXEC_ASYNC is supported") );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dutilsexc.cpp129 long wxExecute( const wxString& rCommand, function
135 // cout << "empty command in wxExecute." << endl;
192 wxLogLastError(wxT("CreateThread in wxExecute"));
218 long wxExecute( function
234 return wxExecute( sCommand
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dprocess.cpp67 long pid = wxExecute(cmd, flags, process);
H A Dutilscmn.cpp633 // wxExecute
642 wxCHECK_MSG( is, false, _T("NULL stream in wxExecute()?") );
675 // public versions of wxExecute() below
685 long rc = wxExecute(command, wxEXEC_SYNC | flags, process);
710 long wxExecute(const wxString& command, wxArrayString& output, int flags) function
715 long wxExecute(const wxString& command, function
882 if ( wxExecute(xdg_open + _T(" ") + url) )
896 long res = wxExecute( wxT("gconftool-2 --get /desktop/gnome/applications/browser/exec"),
902 if (wxExecute(cmd))
909 if (wxExecute(wx
[all...]
H A Ddebugrpt.cpp660 int rc = wxExecute(wxString::Format
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dprocess.tex4 \helpref{wxExecute}{wxexecute} function. When a wxProcess object is passed to
5 wxExecute(), its \helpref{OnTerminate()}{wxprocessonterminate} virtual method
8 exit status which is unavailable from wxExecute() in the case of
19 \helpref{wxExecute}{wxexecute}. If the child process was launched successfully,
39 \helpref{wxExecute}{wxexecute}\\
252 \docparam{flags}{The flags to pass to \helpref{wxExecute}{wxexecute}.
261 \helpref{wxExecute}{wxexecute}
273 Turns on redirection. wxExecute will try to open a couple of pipes
H A Dfiletype.tex186 executed (see \helpref{wxExecute}{wxexecute}) in order to open the file of the
201 with the command which must be executed (see \helpref{wxExecute}{wxexecute}) in
/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) function
315 long result = wxExecute(argv, flags, process);
425 // wxExecute implementation
427 long wxExecute(wxChar **argv, int flags, wxProcess *process) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Ddialup.cpp336 m_DialPId = (int)wxExecute(cmd, false, m_DialProcess);
347 return wxExecute(cmd, /* sync */ true) == 0;
364 return wxExecute(cmd, /* sync */ true) == 0;
703 /* I tried to add an option to wxExecute() to not close stdout,
707 if ( wxExecute(cmd,true /* sync */) == 0 )
816 if(wxExecute(cmd, true /* sync */) == 0)
H A Dutilsunx.cpp262 long wxExecute( const wxString& command, int flags, wxProcess *process ) function
275 _T("wxExecute() can be called only from the main thread") );
317 wxT("too many arguments in wxExecute") );
337 // through to the regular wxExecute for non app bundles.
344 lRc = wxExecute(argv, flags, process);
377 return wxExecute(wxMakeShellCommand(command), wxEXEC_SYNC) == 0;
384 return wxExecute(wxMakeShellCommand(command), output);
410 // wxStream classes to support IO redirection in wxExecute
456 // wxExecute: the real worker function
459 long wxExecute(wxCha
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DUserEvents.cpp134 if (!wxExecute(command, wxEXEC_ASYNC, p)) {
135 // If wxExecute fails, we need to delete the CTerminationProcess
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dutilsexc.cpp3 // Purpose: wxExecute implementation for MSW
80 #include "wx/dde.h" // for WX_DDE hack in wxExecute
491 // wxExecute functions family
539 long wxExecute(const wxString& cmd, int flags, wxProcess *handler) function
541 wxCHECK_MSG( !cmd.empty(), 0, wxT("empty command in wxExecute") );
548 _T("wxExecute() can be called only from the main thread") );
584 wxFAIL_MSG(_T("invalid WX_DDE command in wxExecute"));
599 wxFAIL_MSG(_T("invalid WX_DDE command in wxExecute"));
614 wxFAIL_MSG(_T("invalid WX_DDE command in wxExecute"));
811 wxASSERT_MSG( hwnd, wxT("can't create a hidden window for wxExecute") );
951 long wxExecute(wxChar **argv, int flags, wxProcess *handler) function
[all...]
/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)) function
126 wxT("wxExecute: Only wxEXEC_ASYNC is supported") );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dutils.h359 WXDLLIMPEXP_BASE long wxExecute(wxChar **argv, int flags = wxEXEC_ASYNC,
361 WXDLLIMPEXP_BASE long wxExecute(const wxString& command, int flags = wxEXEC_ASYNC,
366 WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
371 WXDLLIMPEXP_BASE long wxExecute(const wxString& command,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dhelpext.cpp123 if ( wxExecute(command, wxEXEC_SYNC) != -1 )
127 if ( wxExecute(m_BrowserName + _T(' ') + url, wxEXEC_SYNC) != -1 )
H A Ddbgrptg.cpp489 ::wxExecute(command);
H A Dprntdlgg.cpp528 long res = wxExecute( wxT("lpstat -v"), output, errors, wxEXEC_NODISABLE );
566 res = wxExecute( command, output2, errors2, wxEXEC_NODISABLE );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/mmedia/
H A Dvidxanm.cpp366 if (!wxExecute(xanim_command, false, xanimProcess))
482 if (!wxExecute(xanim_command, false, m_xanim_detector))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/exec/
H A Dexec.cpp3 // Purpose: exec sample demonstrates wxExecute and related functions
613 m_pidLast = wxExecute(cmd, wxEXEC_ASYNC, process);
640 int code = wxExecute(cmd, wxEXEC_SYNC);
704 int code = wxExecute(cmd, output, errors);
717 if ( !wxExecute(cmd, wxEXEC_ASYNC, process) )
751 long pid = wxExecute(cmd, wxEXEC_ASYNC, process);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/helpview/src/
H A Dremhelp.cpp194 m_pid = wxExecute( cmd, false, m_process );
195 // leaks - wxExecute itself (if not deleted) and in wxExecute at
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/thread/
H A Dthread.cpp35 // define this to use wxExecute in the exec tests, otherwise just use system
39 #define EXEC(cmd) wxExecute((cmd), wxEXEC_SYNC)
310 // a thread which simply calls wxExecute
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/emulator/src/
H A Demulator.cpp209 m_xnestPID = wxExecute(cmd);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DMuleDebug.cpp423 hasLineNumberInfo = wxExecute(command, out) != -1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/console/
H A Dconsole.cpp524 // wxExecute
533 wxPuts(_T("*** testing wxExecute ***"));
554 wxPrintf(_T("Testing wxExecute: "));
556 if ( wxExecute(_T(COMMAND), true /* sync */) == 0 )
562 wxPrintf(_T("Testing async wxExecute: "));
564 if ( wxExecute(COMMAND) != 0 )
570 wxPrintf(_T("Testing wxExecute with redirection:\n"));
572 if ( wxExecute(_T(REDIRECT_COMMAND), output) != 0 )
4077 return (ExitCode)wxExecute(m_command, wxEXEC_SYNC);
4086 wxPuts(_T("*** Testing wxExecute interactio
[all...]

Completed in 211 milliseconds

12