Home
last modified time | relevance | path

Searched refs:portsGatherer (Results 1 – 9 of 9) sorted by relevance

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qnx/
H A Dqnxdebugsupport.cpp107 setStarter([this, runControl, portsGatherer] { in QnxDebuggeeRunner()
110 if (portsGatherer->useGdbServer()) { in QnxDebuggeeRunner()
111 int pdebugPort = portsGatherer->gdbServer().port(); in QnxDebuggeeRunner()
115 if (portsGatherer->useQmlServer()) { in QnxDebuggeeRunner()
137 auto debuggeeRunner = new QnxDebuggeeRunner(runControl, portsGatherer()); in QnxDebugSupport()
138 debuggeeRunner->addStartDependency(portsGatherer()); in QnxDebugSupport()
195 PDebugRunner(RunControl *runControl, DebugServerPortsGatherer *portsGatherer) in PDebugRunner() argument
199 addStartDependency(portsGatherer); in PDebugRunner()
201 setStarter([this, runControl, portsGatherer] { in PDebugRunner()
202 const int pdebugPort = portsGatherer->gdbServer().port(); in PDebugRunner()
[all …]
H A Dqnxanalyzesupport.cpp49 auto portsGatherer = new PortsGatherer(runControl); in QnxQmlProfilerSupport() local
50 addStartDependency(portsGatherer); in QnxQmlProfilerSupport()
59 setStarter([this, runControl, portsGatherer, profiler] { in QnxQmlProfilerSupport()
60 const QUrl serverUrl = portsGatherer->findEndPoint(); in QnxQmlProfilerSupport()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/remotelinux/
H A Dremotelinuxqmltoolingsupport.cpp43 auto portsGatherer = new PortsGatherer(runControl); in RemoteLinuxQmlToolingSupport() local
44 addStartDependency(portsGatherer); in RemoteLinuxQmlToolingSupport()
48 addStopDependency(portsGatherer); in RemoteLinuxQmlToolingSupport()
54 setStarter([this, runControl, portsGatherer, runworker] { in RemoteLinuxQmlToolingSupport()
55 const QUrl serverUrl = portsGatherer->findEndPoint(); in RemoteLinuxQmlToolingSupport()
H A Dlinuxdevicetester.cpp56 DeviceUsedPortsGatherer portsGatherer; member in RemoteLinux::Internal::GenericLinuxDeviceTesterPrivate
105 d->portsGatherer.stop(); in stopTest()
159 connect(&d->portsGatherer, &DeviceUsedPortsGatherer::error, in handleProcessFinished()
161 connect(&d->portsGatherer, &DeviceUsedPortsGatherer::portListReady, in handleProcessFinished()
166 d->portsGatherer.start(d->deviceConfiguration); in handleProcessFinished()
181 if (d->portsGatherer.usedPorts().isEmpty()) { in handlePortListReady()
185 foreach (const Utils::Port port, d->portsGatherer.usedPorts()) in handlePortListReady()
271 disconnect(&d->portsGatherer, nullptr, this, nullptr); in setFinished()
H A Dremotelinuxdebugsupport.cpp44 auto debugServer = new DebugServerRunner(runControl, portsGatherer()); in LinuxDeviceDebugSupport()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/debugger/
H A Ddebuggerruncontrol.cpp165 QPointer<DebugServerPortsGatherer> portsGatherer; member in Debugger::Internal::DebuggerRunToolPrivate
443 if (d->portsGatherer) { in start()
444 setRemoteChannel(d->portsGatherer->gdbServer()); in start()
445 setQmlServer(d->portsGatherer->qmlServer()); in start()
712 QTC_ASSERT(!d->portsGatherer, reportFailure(); return); in setUsePortsGatherer()
714 d->portsGatherer->setUseGdbServer(useCpp); in setUsePortsGatherer()
715 d->portsGatherer->setUseQmlServer(useQml); in setUsePortsGatherer()
716 addStartDependency(d->portsGatherer); in setUsePortsGatherer()
721 return d->portsGatherer; in portsGatherer()
1020 addStartDependency(portsGatherer); in DebugServerRunner()
[all …]
H A Ddebuggerruncontrol.h69 DebugServerPortsGatherer *portsGatherer() const;
173 DebugServerPortsGatherer *portsGatherer);
H A Ddebuggerplugin.cpp1600 auto gdbServer = new DebugServerRunner(runControl, portsGatherer()); in RemoteAttachRunner()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/webassembly/
H A Dwebassemblyrunconfiguration.cpp113 auto portsGatherer = new PortsGatherer(runControl); in EmrunRunWorker() local
114 addStartDependency(portsGatherer); in EmrunRunWorker()
116 setStarter([this, runControl, portsGatherer] { in EmrunRunWorker()
119 QString::number(portsGatherer->findEndPoint().port())); in EmrunRunWorker()