Home
last modified time | relevance | path

Searched refs:m_threadPool (Results 1 – 25 of 85) sorted by relevance

1234

/dports/www/kdsoap/kdsoap-1.9.0/src/KDSoapServer/
H A DKDSoapServer.cpp39 : m_threadPool(nullptr), in Private()
54 KDSoapThreadPool *m_threadPool; member in KDSoapServer::Private
102 } else if (d->m_threadPool) { in incomingConnection()
116 if (d->m_threadPool) { in numConnectedSockets()
117 return d->m_threadPool->numConnectedSockets(this); in numConnectedSockets()
127 if (d->m_threadPool) { in totalConnectionCount()
138 if (d->m_threadPool) { in resetTotalConnectionCount()
147 d->m_threadPool = threadPool; in setThreadPool()
152 return d->m_threadPool; in threadPool()
296 if (d->m_threadPool) { in suspend()
[all …]
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/runtimerender/
H A Dqssgrenderthreadpool.cpp55 , m_threadPool(threadPool) in QSSGTask()
95 QSSGThreadPool *m_threadPool; member in __anonfbaf98670111::QSSGTask
121 QThreadPool m_threadPool; member in __anonfbaf98670111::QSSGThreadPool
135 m_threadPool->taskFinished(m_id); in run()
140 m_threadPool.setMaxThreadCount(numThreads); in QSSGThreadPool()
147 if (m_threadPool.tryTake(task)) in ~QSSGThreadPool()
159 m_threadPool.start(task); in addTask()
179 if (m_threadPool.tryTake(task)) in cancelTask()
H A Dqssgrendercontextcore.cpp72 , m_threadPool(QSSGAbstractThreadPool::createThreadPool(idealThreadCount())) in QSSGRenderContextInterface()
81 …eBatchLoader::createBatchLoader(m_inputStreamFactory, m_bufferManager, m_threadPool, &m_perfTimer); in QSSGRenderContextInterface()
193 …ef<QSSGAbstractThreadPool> &QSSGRenderContextInterface::threadPool() const { return m_threadPool; } in threadPool()
/dports/sysutils/kf5-baloo/baloo-5.89.0/src/file/
H A Dfileindexscheduler.cpp44 m_threadPool.setMaxThreadCount(1); in FileIndexScheduler()
67 m_threadPool.waitForDone(0); // wait 0 msecs in ~FileIndexScheduler()
99 m_threadPool.start(runnable); in scheduleIndexing()
109 m_threadPool.start(runnable); in scheduleIndexing()
120 m_threadPool.start(runnable); in scheduleIndexing()
131 m_threadPool.start(runnable); in scheduleIndexing()
161 m_threadPool.start(runnable); in scheduleIndexing()
171 m_threadPool.start(m_contentIndexer); in scheduleIndexing()
181 m_threadPool.start(runnable); in scheduleIndexing()
/dports/graphics/krita/krita-4.4.8/libs/image/
H A Dkis_updater_context.cpp42 m_threadPool.waitForDone(); in ~KisUpdaterContext()
151 m_threadPool.start(m_jobs[jobIndex]); in addMergeJob()
166 m_threadPool.start(m_jobs[jobIndex]); in addStrokeJob()
181 m_threadPool.start(m_jobs[jobIndex]); in addSpontaneousJob()
187 m_threadPool.waitForDone(); in waitForDone()
218 m_threadPool.setMaxThreadCount(value); in setThreadsLimit()
238 KIS_SAFE_ASSERT_RECOVER_NOOP(m_jobs.size() == m_threadPool.maxThreadCount()); in threadsLimit()
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/core/jobs/
H A Dqthreadpooler.cpp52 , m_threadPool(QThreadPool::globalInstance()) in QThreadPooler()
55 m_threadPool->setMaxThreadCount(QThreadPooler::maxThreadCount()); in QThreadPooler()
57 m_threadPool->setExpiryTimeout(-1); in QThreadPooler()
86 m_threadPool->start((*it)); in enqueueTasks()
123 m_threadPool->start(dependerTask); in enqueueDepencies()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/MultiSink/src/ndkmedia/src/
H A Dabstractstream.cpp59 QThreadPool m_threadPool; member in AbstractStreamPrivate
136 if (this->d->m_threadPool.maxThreadCount() < 4) in AbstractStream()
137 this->d->m_threadPool.setMaxThreadCount(4); in AbstractStream()
398 QtConcurrent::run(&this->d->m_threadPool, in init()
404 QtConcurrent::run(&this->d->m_threadPool, in init()
410 QtConcurrent::run(&this->d->m_threadPool, in init()
/dports/graphics/blender/blender-2.91.0/extern/audaspace/src/fx/
H A DConvolverReader.cpp27 …(reader->getSpecs().channels), m_irChannels(ir->getSpecs().channels), m_threadPool(threadPool), m_… in ConvolverReader()
42 …h_back(std::unique_ptr<Convolver>(new Convolver(ir->getChannel(i), irLength, m_threadPool, plan))); in ConvolverReader()
45 …h_back(std::unique_ptr<Convolver>(new Convolver(ir->getChannel(0), irLength, m_threadPool, plan))); in ConvolverReader()
145 m_futures[i] = m_threadPool->enqueue(&ConvolverReader::threadFunction, this, i, true); in loadBuffer()
156 m_futures[i] = m_threadPool->enqueue(&ConvolverReader::threadFunction, this, i, false); in loadBuffer()
H A DBinauralReader.cpp30 …m_reader(reader), m_hrtfs(hrtfs), m_source(source), m_N(plan->getSize()), m_threadPool(threadPool)… in BinauralReader()
45 …r<Convolver>(new Convolver(irs.first->getChannel(0), irs.first->getLength(), m_threadPool, plan))); in BinauralReader()
47 …Convolver>(new Convolver(irs.second->getChannel(0), irs.second->getLength(), m_threadPool, plan))); in BinauralReader()
194 m_futures[i] = m_threadPool->enqueue(&BinauralReader::threadFunction, this, i, true); in loadBuffer()
205 m_futures[i] = m_threadPool->enqueue(&BinauralReader::threadFunction, this, i, false); in loadBuffer()
H A DConvolverSound.cpp31 m_sound(sound), m_impulseResponse(impulseResponse), m_threadPool(threadPool), m_plan(plan) in ConvolverSound()
37 …return std::make_shared<ConvolverReader>(m_sound->createReader(), m_impulseResponse, m_threadPool,… in createReader()
H A DBinauralSound.cpp31 m_sound(sound), m_hrtfs(hrtfs), m_source(source), m_threadPool(threadPool), m_plan(plan) in BinauralSound()
37 …return std::make_shared<BinauralReader>(m_sound->createReader(), m_hrtfs, m_source, m_threadPool, … in createReader()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/MultiSink/src/ffmpeg/src/
H A Dabstractstream.cpp58 QThreadPool m_threadPool; member in AbstractStreamPrivate
139 if (this->d->m_threadPool.maxThreadCount() < 2) in AbstractStream()
140 this->d->m_threadPool.setMaxThreadCount(2); in AbstractStream()
293 QtConcurrent::run(&this->d->m_threadPool, in init()
300 QtConcurrent::run(&this->d->m_threadPool, in init()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/MultiSrc/src/ndkmedia/src/
H A Dabstractstream.cpp55 QThreadPool m_threadPool; member in AbstractStreamPrivate
119 if (this->d->m_threadPool.maxThreadCount() < 2) in AbstractStream()
120 this->d->m_threadPool.setMaxThreadCount(2); in AbstractStream()
342 QtConcurrent::run(&this->d->m_threadPool, in setPaused()
377 QtConcurrent::run(&this->d->m_threadPool, in init()
H A Dmediasourcendkmedia.cpp49 QThreadPool m_threadPool; member in MediaSourceNDKMediaPrivate
74 if (this->d->m_threadPool.maxThreadCount() < 2) in MediaSourceNDKMedia()
75 this->d->m_threadPool.setMaxThreadCount(2); in MediaSourceNDKMedia()
312 QtConcurrent::run(&this->d->m_threadPool, in setState()
327 this->d->m_threadPool.waitForDone(); in setState()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/MultiSrc/src/ffmpeg/src/
H A Dabstractstream.cpp58 QThreadPool m_threadPool; member in AbstractStreamPrivate
162 if (this->d->m_threadPool.maxThreadCount() < 2) in AbstractStream()
163 this->d->m_threadPool.setMaxThreadCount(2); in AbstractStream()
466 QtConcurrent::run(&this->d->m_threadPool, in setPaused()
494 QtConcurrent::run(&this->d->m_threadPool, in init()
498 QtConcurrent::run(&this->d->m_threadPool, in init()
H A Dmediasourceffmpeg.cpp67 QThreadPool m_threadPool; member in MediaSourceFFmpegPrivate
101 if (this->d->m_threadPool.maxThreadCount() < 2) in MediaSourceFFmpeg()
102 this->d->m_threadPool.setMaxThreadCount(2); in MediaSourceFFmpeg()
546 QtConcurrent::run(&this->d->m_threadPool, in setState()
565 this->d->m_threadPool.waitForDone(); in setState()
646 QtConcurrent::run(&this->d->m_threadPool, in packetConsumed()
/dports/astro/marble/marble-21.12.3/src/lib/marble/
H A DGenericScanlineTextureMapper.cpp63 , m_threadPool() in GenericScanlineTextureMapper()
122 const int numThreads = m_threadPool.maxThreadCount(); in mapTexture()
128 m_threadPool.start( job ); in mapTexture()
131 m_threadPool.waitForDone(); in mapTexture()
H A DSphericalScanlineTextureMapper.cpp61 , m_threadPool() in SphericalScanlineTextureMapper()
122 const int numThreads = m_threadPool.maxThreadCount(); in mapTexture()
128 m_threadPool.start( job ); in mapTexture()
131 m_threadPool.waitForDone(); in mapTexture()
H A DMercatorScanlineTextureMapper.cpp125 const int numThreads = m_threadPool.maxThreadCount(); in mapTexture()
131 m_threadPool.start( job ); in mapTexture()
145 m_threadPool.waitForDone(); in mapTexture()
H A DEquirectScanlineTextureMapper.cpp126 const int numThreads = m_threadPool.maxThreadCount(); in mapTexture()
132 m_threadPool.start( job ); in mapTexture()
146 m_threadPool.waitForDone(); in mapTexture()
/dports/sysutils/plasma5-discover/discover-5.23.5/libdiscover/backends/SnapBackend/
H A DSnapBackend.cpp98 m_threadPool.setMaxThreadCount(1); in SnapBackend()
104 m_threadPool.waitForDone(80000); in ~SnapBackend()
105 m_threadPool.clear(); in ~SnapBackend()
178 auto future = QtConcurrent::run(&m_threadPool, [this, jobs]() { in populateJobsWithFilter()
/dports/astro/marble/marble-21.12.3/src/lib/marble/layers/
H A DVectorTileLayer.cpp54 QThreadPool m_threadPool; // a shared thread pool for all layers to keep CPU usage sane member in Marble::VectorTileLayer::Private
68 m_threadPool.setMaxThreadCount(1); in Private()
190 … d->m_tileModels << new VectorTileModel(&d->m_loader, layer, d->m_treeModel, &d->m_threadPool); in setMapTheme()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/VideoCapture/src/ffmpeg/src/
H A Dconvertvideoffmpeg.cpp173 QThreadPool m_threadPool; member in ConvertVideoFFmpegPrivate
220 if (this->d->m_threadPool.maxThreadCount() < 2) in ConvertVideoFFmpeg()
221 this->d->m_threadPool.setMaxThreadCount(2); in ConvertVideoFFmpeg()
328 QtConcurrent::run(&this->d->m_threadPool, in init()
332 QtConcurrent::run(&this->d->m_threadPool, in init()
/dports/math/ogdf/OGDF/src/ogdf/energybased/
H A DFastMultipoleEmbedder.cpp157 …balContext = FMEMultipoleKernel::allocateContext(m_pGraph, m_pOptions, m_threadPool->numThreads()); in runMultipole()
158 m_threadPool->runKernel<FMEMultipoleKernel>(pGlobalContext); in runMultipole()
190 m_threadPool = new FMEThreadPool(m_numberOfThreads); in allocate()
196 delete m_threadPool; in deallocate()
/dports/multimedia/webcamoid/webcamoid-8.8.0/libAvKys/Plugins/AudioGen/src/
H A Daudiogenelement.cpp77 QThreadPool m_threadPool; member in AudioGenElementPrivate
232 QtConcurrent::run(&this->d->m_threadPool, in setState()
244 QtConcurrent::run(&this->d->m_threadPool, in setState()

1234