Home
last modified time | relevance | path

Searched refs:commandProc (Results 1 – 15 of 15) sorted by relevance

/dports/emulators/qmc2/qmc2-0.195_4/qmc2/
H A Dsetupwizard.cpp211 QProcess commandProc; in probeExecutable() local
215 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in probeExecutable()
218 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME_LONG); in probeExecutable()
225 commandProcRunning = (commandProc.state() == QProcess::Running); in probeExecutable()
228 QString output(commandProc.readAllStandardOutput()); in probeExecutable()
251 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in probeExecutable()
265 QString lfOutput(commandProc.readAllStandardOutput()); in probeExecutable()
561 QProcess commandProc; in findIniFiles() local
565 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in findIniFiles()
575 commandProcRunning = (commandProc.state() == QProcess::Running); in findIniFiles()
[all …]
H A Dsamplechecker.cpp205 QProcess commandProc; in verify() local
207 commandProc.setWorkingDirectory(emuWorkDir); in verify()
208 commandProc.setProcessChannelMode(QProcess::MergedChannels); in verify()
215commandProc.start(qmc2Config->value(QMC2_EMULATOR_PREFIX + "FilesAndDirectories/ExecutableFile").t… in verify()
216 bool started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in verify()
218 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME_LONG); in verify()
223 bool commandProcRunning = (commandProc.state() == QProcess::Running); in verify()
224 while ( commandProcRunning && !commandProc.waitForFinished(QMC2_PROCESS_POLL_TIME) ) { in verify()
226 commandProcRunning = (commandProc.state() == QProcess::Running); in verify()
229 …ving up") + " (" + tr("error text = %1").arg(ProcessManager::errorText(commandProc.error())) + ")"… in verify()
[all …]
H A Demuopt.cpp1385 QProcess commandProc; in checkTemplateMap() local
1387 commandProc.setStandardErrorFile("/dev/null"); in checkTemplateMap()
1392commandProc.start(qmc2Config->value(QMC2_EMULATOR_PREFIX + "FilesAndDirectories/ExecutableFile").t… in checkTemplateMap()
1393 bool started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in checkTemplateMap()
1396 …started = commandProc.waitForStarted(qmc2TemplateCheck ? QMC2_PROCESS_POLL_TIME : QMC2_PROCESS_POL… in checkTemplateMap()
1400 bool commandProcRunning = (commandProc.state() == QProcess::Running); in checkTemplateMap()
1401 while ( commandProcRunning && !commandProc.waitForFinished(QMC2_PROCESS_POLL_TIME) ) { in checkTemplateMap()
1403 commandProcRunning = (commandProc.state() == QProcess::Running); in checkTemplateMap()
1407 …ving up") + " (" + tr("error text = %1").arg(ProcessManager::errorText(commandProc.error())) + ")"… in checkTemplateMap()
1410 …ving up") + " (" + tr("error text = %1").arg(ProcessManager::errorText(commandProc.error())) + ")"… in checkTemplateMap()
[all …]
H A Ddeviceconfigurator.cpp150 QProcess commandProc; in loadMidiInterfaces() local
152 commandProc.setStandardErrorFile("/dev/null"); in loadMidiInterfaces()
158commandProc.start(qmc2Config->value(QMC2_EMULATOR_PREFIX + "FilesAndDirectories/ExecutableFile").t… in loadMidiInterfaces()
159 bool started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in loadMidiInterfaces()
161 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME_LONG); in loadMidiInterfaces()
166 bool commandProcRunning = (commandProc.state() == QProcess::Running); in loadMidiInterfaces()
167 while ( !commandProc.waitForFinished(QMC2_PROCESS_POLL_TIME) && commandProcRunning ) { in loadMidiInterfaces()
169 commandProcRunning = (commandProc.state() == QProcess::Running); in loadMidiInterfaces()
172 QString buffer(commandProc.readAllStandardOutput()); in loadMidiInterfaces()
200 …ving up") + " (" + tr("error text = %1").arg(ProcessManager::errorText(commandProc.error())) + ")"… in loadMidiInterfaces()
H A Dmachinelist.cpp537 QProcess commandProc; in load() local
542 commandProc.start(execFile, QStringList() << "-help"); in load()
543 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in load()
546 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME_LONG); in load()
553 commandProcRunning = (commandProc.state() == QProcess::Running); in load()
570 QString s(commandProc.readAllStandardOutput()); in load()
598 commandProc.start(execFile, QStringList() << "-listfull"); in load()
599 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in load()
602 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME_LONG); in load()
609 commandProcRunning = (commandProc.state() == QProcess::Running); in load()
[all …]
H A Dsoftwarelist.cpp946 QProcess commandProc; in getXmlDataWithEnabledSlots() local
947commandProc.start(qmc2Config->value(QMC2_EMULATOR_PREFIX + "FilesAndDirectories/ExecutableFile").t… in getXmlDataWithEnabledSlots()
948 bool started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME); in getXmlDataWithEnabledSlots()
950 started = commandProc.waitForStarted(QMC2_PROCESS_POLL_TIME_LONG); in getXmlDataWithEnabledSlots()
955 bool commandProcRunning = (commandProc.state() == QProcess::Running); in getXmlDataWithEnabledSlots()
956 while ( !commandProc.waitForFinished(QMC2_PROCESS_POLL_TIME) && commandProcRunning ) { in getXmlDataWithEnabledSlots()
958 commandProcRunning = (commandProc.state() == QProcess::Running); in getXmlDataWithEnabledSlots()
961 …ving up") + " (" + tr("error text = %1").arg(ProcessManager::errorText(commandProc.error())) + ")"… in getXmlDataWithEnabledSlots()
966 xmlBuffer = commandProc.readAllStandardOutput(); in getXmlDataWithEnabledSlots()
/dports/games/0ad/0ad-0.0.23b-alpha/source/tools/atlas/AtlasUI/CustomControls/DraggableListCtrl/
H A DDraggableListCtrl.cpp50 AtlasWindowCommandProc* commandProc = AtlasWindowCommandProc::GetFromParentFrame(this); in OnEndDrag() local
51 commandProc->FinaliseLastCommand(); in OnEndDrag()
114 AtlasWindowCommandProc* commandProc = AtlasWindowCommandProc::GetFromParentFrame(this); in OnMouseEvent() local
115 commandProc->Submit(new DragCommand(this, m_DragSource, dragTarget)); in OnMouseEvent()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar-carbon-integration/src/org/herac/tuxguitar/carbon/menu/
H A DMacMenu.java41 int commandProc= commandCallback.getAddress(); in hookApplicationMenu() local
42 if (commandProc == 0) { in hookApplicationMenu()
49 …OS.InstallEventHandler(OS.GetApplicationEventTarget(), commandProc,mask.length / 2, mask, 0, null); in hookApplicationMenu() local
81 public int commandProc(int nextHandler, int theEvent, int userData) { in commandProc() method in MacMenu
H A DMacMenuCallback.java6 public int commandProc(int nextHandler, int theEvent, int userData); in commandProc() method
/dports/games/0ad/0ad-0.0.23b-alpha/source/tools/atlas/AtlasUI/CustomControls/Windows/
H A DAtlasWindow.cpp197 AtlasWindowCommandProc* commandProc = AtlasWindowCommandProc::GetFromParentFrame(this); in OnNew() local
198 commandProc->Submit(new AtlasCommand_Begin(_("New file"), this)); in OnNew()
200 commandProc->Submit(new AtlasCommand_End()); in OnNew()
308 AtlasWindowCommandProc* commandProc = AtlasWindowCommandProc::GetFromParentFrame(this); in OpenFile() local
309 commandProc->Submit(new AtlasCommand_Begin(_("Open file"), this)); in OpenFile()
311 commandProc->Submit(new AtlasCommand_End()); in OpenFile()
/dports/cad/xcircuit/xcircuit-3.10.30/
H A DtkSimple.c66 char *commandProc; /* Callback procedure for commands sent to the window */ member
94 "", Tk_Offset(Simple, commandProc), TK_CONFIG_NULL_OK},
215 simplePtr->commandProc = NULL;
289 if (simplePtr->commandProc != NULL) {
291 if (Tcl_EvalEx(simplePtr->interp, simplePtr->commandProc, -1, 0)
/dports/games/0ad/0ad-0.0.23b-alpha/source/tools/atlas/GameInterface/
H A DCommandProc.cpp39 static CommandProc commandProc; in GetCommandProc() local
40 return commandProc; in GetCommandProc()
/dports/games/0ad/0ad-0.0.23b-alpha/source/tools/atlas/AtlasUI/CustomControls/EditableListCtrl/
H A DEditableListCtrl.cpp121 AtlasWindowCommandProc* commandProc = AtlasWindowCommandProc::GetFromParentFrame(this); in OnKeyDown() local
122 commandProc->Submit(new PasteCommand(this, selection, row)); in OnKeyDown()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/ui/swt/osx/
H A DCarbonUIEnhancer.java463 int commandProc = ((Number) mCallback_getAddress.invoke(commandCallback, in hookApplicationMenu() local
465 if (commandProc == 0) { in hookApplicationMenu()
486 commandProc, in hookApplicationMenu()
778 final static int commandProc(int nextHandler, int theEvent, int userData) { in commandProc() method in CarbonUIEnhancer
/dports/databases/speedtables/speedtables-1.13.12/ctables/
H A Dctable_search.c3193 Tcl_ObjCmdProc *commandProc = cursor->ownerTable->creator->cursor_command; in ctable_CreateCursorCommand() local
3195 …cursor->commandInfo = Tcl_CreateObjCommand(interp, cursor->cursorName, commandProc, (ClientData)cu… in ctable_CreateCursorCommand()