Home
last modified time | relevance | path

Searched full:finished (Results 1 – 25 of 2634) sorted by relevance

12345678910>>...106

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeotiledmapreply.cpp59 The finished() and error(QGeoTiledMapReply::Error,QString)
62 It is possible that a newly created QGeoTiledMapReply may be in a finished
64 will never emit the finished() or
114 Sets whether or not this reply has finished to \a finished.
116 If \a finished is true, this will cause the finished() signal to be
124 void QGeoTiledMapReply::setFinished(bool finished) in setFinished() argument
126 d_ptr->isFinished = finished; in setFinished()
128 emit this->finished(); in setFinished()
144 This will also cause error() and finished() signals to be emitted, in that
239 This will do nothing if the reply is finished.
[all …]
H A Dqgeoroutereply.cpp57 The finished() and error(QGeoRouteReply::Error,QString)
60 It is possible that a newly created QGeoRouteReply may be in a finished
62 will never emit the finished() or
117 Sets whether or not this reply has finished to \a finished.
119 If \a finished is true, this will cause the finished() signal to be
126 void QGeoRouteReply::setFinished(bool finished) in setFinished() argument
128 d_ptr->isFinished = finished; in setFinished()
130 emit this->finished(); in setFinished()
146 This will also cause error() and finished() signals to be emitted, in that
226 This will do nothing if the reply is finished.
[all …]
H A Dqgeocodereply.cpp56 The finished() and error(QGeoCodeReply::Error,QString)
59 It is possible that a newly created QGeoCodeReply may be in a finished
61 will never emit the finished() or
123 Sets whether or not this reply has finished to \a finished.
125 If \a finished is true, this will cause the finished() signal to be
132 void QGeoCodeReply::setFinished(bool finished) in setFinished() argument
134 d_ptr->isFinished = finished; in setFinished()
136 emit this->finished(); in setFinished()
152 This will also cause error() and finished() signals to be emitted, in that
246 This will do nothing if the reply is finished.
[all …]
H A Dqgeocodingmanager.cpp89 SIGNAL(finished(QGeoCodeReply*)), in QGeoCodingManager()
91 SIGNAL(finished(QGeoCodeReply*))); in QGeoCodingManager()
167 this can be done in the slot connected to QGeoCodingManager::finished(),
168 QGeoCodingManager::error(), QGeoCodeReply::finished() or
209 this can be done in the slot connected to QGeoCodingManager::finished(),
210 QGeoCodingManager::error(), QGeoCodeReply::finished() or
243 this can be done in the slot connected to QGeoCodingManager::finished(),
244 QGeoCodingManager::error(), QGeoCodeReply::finished() or
282 \fn void QGeoCodingManager::finished(QGeoCodeReply *reply)
284 This signal is emitted when \a reply has finished processing.
[all …]
H A Dqgeocodingmanagerengine.cpp170 this can be done in the slot connected to QGeoCodingManagerEngine::finished(),
171 QGeoCodingManagerEngine::error(), QGeoCodeReply::finished() or
215 this can be done in the slot connected to QGeoCodingManagerEngine::finished(),
216 QGeoCodingManagerEngine::error(), QGeoCodeReply::finished() or
253 this can be done in the slot connected to QGeoCodingManagerEngine::finished(),
254 QGeoCodingManagerEngine::error(), QGeoCodeReply::finished() or
294 \fn void QGeoCodingManagerEngine::finished(QGeoCodeReply *reply)
296 This signal is emitted when \a reply has finished processing.
299 finished successfully.
301 This signal and QGeoCodeReply::finished() will be emitted at the same
[all …]
H A Dqgeoroutingmanager.cpp116 SIGNAL(finished(QGeoRouteReply*)),
167 SIGNAL(finished(QGeoRouteReply*)), in QGeoRoutingManager()
169 SIGNAL(finished(QGeoRouteReply*))); in QGeoRoutingManager()
229 this can be done in the slot connected to QGeoRoutingManager::finished(),
230 QGeoRoutingManager::error(), QGeoRouteReply::finished() or
261 this can be done in the slot connected to QGeoRoutingManager::finished(),
262 QGeoRoutingManager::error(), QGeoRouteReply::finished() or
372 \fn void QGeoRoutingManager::finished(QGeoRouteReply *reply)
374 This signal is emitted when \a reply has finished processing.
377 finished successfully.
[all …]
H A Dqgeoroutingmanagerengine.cpp165 this can be done in the slot connected to QGeoRoutingManagerEngine::finished(),
166 QGeoRoutingManagerEngine::error(), QGeoRouteReply::finished() or
193 this can be done in the slot connected to QGeoRoutingManagerEngine::finished(),
194 QGeoRoutingManagerEngine::error(), QGeoRouteReply::finished() or
385 \fn void QGeoRoutingManagerEngine::finished(QGeoRouteReply *reply)
387 This signal is emitted when \a reply has finished processing.
390 finished successfully.
392 This signal and QGeoRouteReply::finished() will be emitted at the same time.
402 \a reply. The QGeoRoutingManagerEngine::finished() signal will probably follow.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dunsupportedreplies_p.h79 QMetaObject::invokeMethod(this, "finished", Qt::QueuedConnection); in QPlaceDetailsReplyUnsupported()
80 QMetaObject::invokeMethod(parent, "finished", Qt::QueuedConnection, in QPlaceDetailsReplyUnsupported()
103 QMetaObject::invokeMethod(this, "finished", Qt::QueuedConnection); in QPlaceContentReplyUnsupported()
104 QMetaObject::invokeMethod(parent, "finished", Qt::QueuedConnection, in QPlaceContentReplyUnsupported()
127 QMetaObject::invokeMethod(this, "finished", Qt::QueuedConnection); in QPlaceSearchReplyUnsupported()
128 QMetaObject::invokeMethod(parent, "finished", Qt::QueuedConnection, in QPlaceSearchReplyUnsupported()
151 QMetaObject::invokeMethod(this, "finished", Qt::QueuedConnection); in QPlaceSearchSuggestionReplyUnsupported()
152 QMetaObject::invokeMethod(parent, "finished", Qt::QueuedConnection, in QPlaceSearchSuggestionReplyUnsupported()
175 QMetaObject::invokeMethod(this, "finished", Qt::QueuedConnection); in QPlaceIdReplyUnsupported()
176 QMetaObject::invokeMethod(parent, "finished", Qt::QueuedConnection, in QPlaceIdReplyUnsupported()
[all …]
H A Dqplacereply.cpp57 The finished() signal can be used to monitor the progress of an operation.
158 Sets the status of whether the reply is \a finished
159 or not. This function does not cause the finished() signal
162 void QPlaceReply::setFinished(bool finished) in setFinished() argument
164 d_ptr->isFinished = finished; in setFinished()
217 \fn void QPlaceReply::finished()
219 This signal is emitted when this reply has finished processing.
222 finished successfully.
224 This signal and QPlaceManager::finished() will be
236 multiple times before \l QPlaceReply::finished() is emitted, as some
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_job.c118 f = job->base.s_fence ? &job->base.s_fence->finished : job->fence; in amdgpu_job_free_resources()
158 *f = dma_fence_get(&job->base.s_fence->finished); in amdgpu_job_submit()
198 &job->base.s_fence->finished, in amdgpu_job_dependency()
212 struct dma_fence *fence = NULL, *finished; in amdgpu_job_run() local
217 finished = &job->base.s_fence->finished; in amdgpu_job_run()
224 dma_fence_set_error(finished, -ECANCELED);/* skip IB as well if VRAM lost */ in amdgpu_job_run()
226 if (finished->error < 0) { in amdgpu_job_run()
266 dma_fence_set_error(&s_fence->finished, -EHWPOISON); in amdgpu_job_stop_all_jobs_on_sched()
267 dma_fence_signal(&s_fence->finished); in amdgpu_job_stop_all_jobs_on_sched()
277 dma_fence_set_error(&s_fence->finished, -EHWPOISON); in amdgpu_job_stop_all_jobs_on_sched()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/powerpc/power8/
H A Dpipeline.json5 "BriefDescription": "1 or more ppc insts finished",
6 "PublicDescription": "1 or more ppc insts finished (completed)"
203 "BriefDescription": "Larx finished",
221 "BriefDescription": "LSU Finished an instruction (up to 2 per cycle)",
305 "BriefDescription": "Store Instructions Finished",
306 "PublicDescription": "Store Instructions Finished (store sent to nest)"
311 "BriefDescription": "Store forwards that finished",
335 "BriefDescription": "tlbie finished",
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/
H A Dvisit_info.hpp26 static const int FINISHED = 3; member in boost::geometry::detail::overlay::visit_info
42 inline void set_finished() { m_visit_code = FINISHED; } in set_finished()
52 inline bool finished() const { return m_visit_code == FINISHED; } in finished() function in boost::geometry::detail::overlay::visit_info
71 if (visited() || started() || finished() ) in finalize()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacemanager_nokia/
H A Dtst_qplacemanager_nokia.cpp117 QSignalSpy finishedSpy(reply, SIGNAL(finished())); in checkSignals()
119 QSignalSpy managerFinishedSpy(placeManager, SIGNAL(finished(QPlaceReply*))); in checkSignals()
162 //check that we get a finished signal in checkSignals()
165 qWarning() << "Finished signal from reply not received"; in checkSignals()
182 //check that we get the finished signal from the manager in checkSignals()
185 qWarning() << "Finished signal from manager not received"; in checkSignals()
189 //check that the reply instance in the finished signal from the manager is correct in checkSignals()
191 qWarning() << "Reply instance in finished signal from manager is incorrect"; in checkSignals()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/progressbar/
H A Dwidgets.py110 """Updates the widget to show the ETA or total time when finished."""
114 elif pbar.finished:
149 """Updates the widget to show the ETA or total time when finished."""
152 elif pbar.finished:
203 finished"""
205 if pbar.finished: return self.markers[0]
238 'finished': ('finished', None),
347 if pbar.finished: return '%s%s%s' % (left, width * marker, right)
378 if pbar.finished: return '%s%s%s' % (left, width * '=', right)
H A Dprogressbar.py84 - finished: True if the bar has finished (reached 100%)
91 __slots__ = ('currval', 'fd', 'finished', 'last_update_time',
130 self.finished = False
236 if self.currval >= self.next_update or self.finished: return True
309 """Puts the ProgressBar bar in the finished state."""
311 if self.finished:
313 self.finished = True
/OK3568_Linux_fs/u-boot/lib/lzma/
H A DLzmaDec.h78 LZMA_FINISH_END /* block must be finished at the end */
99 LZMA_STATUS_FINISHED_WITH_MARK, /* stream was finished with end mark. */
100 LZMA_STATUS_NOT_FINISHED, /* stream was not finished */
102 …LZMA_STATUS_MAYBE_FINISHED_WITHOUT_MARK /* there is probability that stream was finished without …
165 LZMA_FINISH_END - Stream must be finished after dicLimit.
191 LZMA_FINISH_END - Stream must be finished after (*destLen).
205 LZMA_FINISH_END - Stream must be finished after (*destLen).
/OK3568_Linux_fs/kernel/drivers/gpu/drm/scheduler/
H A Dsched_fence.c65 int ret = dma_fence_signal(&fence->finished); in drm_sched_fence_finished()
68 DMA_FENCE_TRACE(&fence->finished, in drm_sched_fence_finished()
71 DMA_FENCE_TRACE(&fence->finished, in drm_sched_fence_finished()
114 call_rcu(&fence->finished.rcu, drm_sched_fence_free); in drm_sched_fence_release_scheduled()
149 return container_of(f, struct drm_sched_fence, finished); in to_drm_sched_fence()
172 dma_fence_init(&fence->finished, &drm_sched_fence_ops_finished, in drm_sched_fence_create()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacemanager/
H A Dtst_qplacemanager.cpp153 QSignalSpy finishedSpy(reply, SIGNAL(finished())); in checkSignals()
155 QSignalSpy managerFinishedSpy(placeManager, SIGNAL(finished(QPlaceReply*))); in checkSignals()
198 //check that we get a finished signal in checkSignals()
201 qWarning() << "Finished signal from reply not received"; in checkSignals()
218 //check that we get the finished signal from the manager in checkSignals()
221 qWarning() << "Finished signal from manager not received"; in checkSignals()
225 //check that the reply instance in the finished signal from the manager is correct in checkSignals()
227 qWarning() << "Reply instance in finished signal from manager is incorrect"; in checkSignals()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/placemanager_utils/
H A Dplacemanager_utils.cpp77 QSignalSpy saveSpy(saveReply, SIGNAL(finished())); in doSavePlaces()
92 QSignalSpy saveSpy(saveReply, SIGNAL(finished())); in doSavePlaces()
269 QSignalSpy finishedSpy(reply, SIGNAL(finished())); in checkSignals()
271 QSignalSpy managerFinishedSpy(manager, SIGNAL(finished(QPlaceReply*))); in checkSignals()
314 //check that we get a finished signal in checkSignals()
317 qWarning() << "Finished signal from reply not received"; in checkSignals()
334 //check that we get the finished signal from the manager in checkSignals()
337 qWarning() << "Finished signal from manager not received"; in checkSignals()
341 //check that the reply instance in the finished signal from the manager is correct in checkSignals()
343 qWarning() << "Reply instance in finished signal from manager is incorrect"; in checkSignals()
/OK3568_Linux_fs/kernel/include/drm/
H A Dgpu_scheduler.h68 * fence_context but &drm_sched_fence.finished uses
75 * @last_scheduled: points to the finished fence of the last scheduled job.
136 * @finished: this fence is what will be signaled by the scheduler
145 struct dma_fence finished; member
150 * &drm_sched_fence.finished fence once parent is signalled.
159 * @lock: the lock used by the scheduled and the finished fences.
176 * @finish_cb: the callback for the finished fence.
239 * @free_job: Called once the job's finished fence has been signaled
257 * finished.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocodingmanagerplugins/
H A Dqgeocodingmanagerengine_test.h50 void callSetFinished ( bool finished ) {setFinished(finished);} in callSetFinished() argument
80 emit(this->finished(geocodereply)); in geocode()
91 emit(this->finished(geocodereply)); in geocode()
102 emit(this->finished(geocodereply)); in reverseGeocode()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/places/
H A Drequesthandler.h87 connect(searchReply, SIGNAL(finished()), this, SLOT(processSearchReply())); in simpleSearch()
104 connect(searchReply, SIGNAL(finished()), this, SLOT(handleSearchReply())); in search()
123 connect(detailsReply, SIGNAL(finished()), this, SLOT(handleDetailsReply())); in details()
138 connect(contentReply, SIGNAL(finished()), this, SLOT(handleImagesReply())); in images()
150 connect(suggestionReply, SIGNAL(finished()), this, SLOT(handleSuggestionReply())); in suggestion()
172 connect(savePlaceReply, SIGNAL(finished()), this, SLOT(handleSavePlaceReply())); in savePlace()
181 connect(removePlaceReply, SIGNAL(finished()), this, SLOT(handleRemovePlaceReply())); in removePlace()
189 connect(initCatReply, SIGNAL(finished()), this, SLOT(handleInitCatReply())); in initializeCategories()
201 connect(saveCategoryReply, SIGNAL(finished()), this, SLOT(handleSaveCategoryReply())); in saveCategory()
213 connect(removeCategoryReply, SIGNAL(finished()), this, SLOT(handleRemoveCategoryReply())); in removeCategory()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqplacemanagerengine_nokiav2.cpp255 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in getPlaceDetails()
323 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in getPlaceContent()
367 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in search()
383 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in search()
429 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in search()
473 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in search()
492 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in searchSuggestions()
510 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in searchSuggestions()
524 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in searchSuggestions()
538 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in savePlace()
[all …]
/OK3568_Linux_fs/kernel/fs/cifs/
H A Dsmb2inode.c108 goto finished; in smb2_compound_op()
127 goto finished; in smb2_compound_op()
165 goto finished; in smb2_compound_op()
200 goto finished; in smb2_compound_op()
227 goto finished; in smb2_compound_op()
245 goto finished; in smb2_compound_op()
279 goto finished; in smb2_compound_op()
319 goto finished; in smb2_compound_op()
345 goto finished; in smb2_compound_op()
355 goto finished; in smb2_compound_op()
[all …]
/OK3568_Linux_fs/kernel/drivers/spi/
H A Dspi-slave-time.c35 struct completion finished; member
60 complete(&priv->finished); in spi_slave_time_complete()
97 init_completion(&priv->finished); in spi_slave_time_probe()
114 wait_for_completion(&priv->finished); in spi_slave_time_remove()

12345678910>>...106