Home
last modified time | relevance | path

Searched refs:spy (Results 1 – 18 of 18) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopositioninfosource/
H A Dtestqgeopositioninfosource.cpp328 QSignalSpy spy(m_source, SIGNAL(positionUpdated(QGeoPositionInfo))); in lastKnownPosition() local
348 QVERIFY((spy.count() > 0) && (timeout.count() == 0)); in lastKnownPosition()
350 QList<QVariant> list = spy.takeFirst(); in lastKnownPosition()
425 QSignalSpy spy(m_source, SIGNAL(positionUpdated(QGeoPositionInfo))); in startUpdates_testIntervals() local
432 QTRY_COMPARE_WITH_TIMEOUT(spy.count(), 1, 9500); in startUpdates_testIntervals()
434 QTRY_VERIFY_WITH_TIMEOUT((spy.count() == 1) && (timeout.count() == 0), (interval*2)); in startUpdates_testIntervals()
435 spy.clear(); in startUpdates_testIntervals()
453 QSignalSpy spy(m_source, SIGNAL(positionUpdated(QGeoPositionInfo))); in startUpdates_testIntervalChangesWhileRunning() local
459 QTRY_VERIFY_WITH_TIMEOUT(spy.count() > 0, 7000); in startUpdates_testIntervalChangesWhileRunning()
461 spy.clear(); in startUpdates_testIntervalChangesWhileRunning()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/pcsc-lite/pcsc-lite/
H A D0001-pcsc-spy-use-python3-only.patch4 Subject: [PATCH] pcsc-spy: use python3 only
8 now, switch pcsc-spy to use it exclusively.
14 src/spy/pcsc-spy | 9 ++-------
17 diff --git a/src/spy/pcsc-spy b/src/spy/pcsc-spy
19 --- a/src/spy/pcsc-spy
20 +++ b/src/spy/pcsc-spy
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qnmeapositioninfosource/dummynmeapositioninfosource/
H A Dtst_dummynmeapositioninfosource.cpp106 QSignalSpy spy(proxy->source(), SIGNAL(positionUpdated(QGeoPositionInfo))); in testOverloadedParseFunction() local
114 QTRY_VERIFY_WITH_TIMEOUT((spy.count() == 1), 10000); in testOverloadedParseFunction()
115 pos = spy.at(0).at(0).value<QGeoPositionInfo>(); in testOverloadedParseFunction()
121 spy.clear(); in testOverloadedParseFunction()
125 QTRY_VERIFY_WITH_TIMEOUT((spy.count() == 1), 10000); in testOverloadedParseFunction()
126 pos = spy.at(0).at(0).value<QGeoPositionInfo>(); in testOverloadedParseFunction()
132 spy.clear(); in testOverloadedParseFunction()
136 QTRY_VERIFY_WITH_TIMEOUT((spy.count() == 1), 10000); in testOverloadedParseFunction()
137 pos = spy.at(0).at(0).value<QGeoPositionInfo>(); in testOverloadedParseFunction()
143 spy.clear(); in testOverloadedParseFunction()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/pcsc-lite/
H A Dpcsc-lite_1.9.0.bb9 LICENSE:${PN}-spy = "GPL-3.0-or-later"
10 LICENSE:${PN}-spy-dev = "GPL-3.0-or-later"
15 file://0001-pcsc-spy-use-python3-only.patch \
35 PACKAGES = "${PN} ${PN}-dbg ${PN}-dev ${PN}-lib ${PN}-doc ${PN}-spy ${PN}-spy-dev"
48 FILES:${PN}-spy = "${bindir}/pcsc-spy \
50 FILES:${PN}-spy-dev = "${libdir}/libpcscspy.la \
57 RDEPENDS:${PN}-spy +="python3"
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qnmeapositioninfosource/
H A Dtst_qnmeapositioninfosource.cpp183 QSignalSpy spy(&source, SIGNAL(positionUpdated(QGeoPositionInfo))); in beginWithBufferedData() local
192 QTRY_COMPARE_WITH_TIMEOUT(spy.count(), 0, 300); in beginWithBufferedData()
195 QTRY_COMPARE(spy.count(), dateTimes.count()); in beginWithBufferedData()
197 QCOMPARE(spy.at(i).at(0).value<QGeoPositionInfo>().timestamp(), dateTimes[i]); in beginWithBufferedData()
199 QTRY_COMPARE(spy.count(), 1); in beginWithBufferedData()
200 QCOMPARE(spy.at(0).at(0).value<QGeoPositionInfo>().timestamp(), dateTimes.first()); in beginWithBufferedData()
360 QSignalSpy spy(proxy->source(), SIGNAL(positionUpdated(QGeoPositionInfo))); in startUpdates_waitForValidDateTime() local
368 QTRY_COMPARE(spy.count(), dateTimes.count()); in startUpdates_waitForValidDateTime()
370 for (int i=0; i<spy.count(); i++) { in startUpdates_waitForValidDateTime()
371 QGeoPositionInfo pInfo = spy[i][0].value<QGeoPositionInfo>(); in startUpdates_waitForValidDateTime()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/positionplugintest/
H A Dtst_positionplugin.cpp96 QSignalSpy spy(src, SIGNAL(positionUpdated(QGeoPositionInfo))); in getUpdates() local
99 QCOMPARE(spy.count(), 1); in getUpdates()
100 QCOMPARE(spy[0].size(), 1); in getUpdates()
102 QGeoPositionInfo info = qvariant_cast<QGeoPositionInfo>(spy[0][0]); in getUpdates()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/
H A Dtst_routing.qml790 function test_basic_routing_automatic(model, spy, label) {
795 spy.clear();
797 tryCompare (spy, "count", 1) // 5 sec
807 tryCompare (spy, "count", 2)
813 tryCompare (spy, "count", 3)
826 tryCompare (spy, "count", 4)
836 tryCompare (spy, "count", 5)
842 tryCompare (spy, "count", 6)
848 tryCompare (spy, "count", 7)
857 tryCompare (spy, "count", 8)
[all …]
H A Dtst_place.qml336 // set categories to the same (signal spy should not increase?)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/plugins/declarativetestplugin/
H A Dtesthelper.h47 QSignalSpy spy(item->window(), &QQuickWindow::afterAnimating);
48 return spy.wait(timeout);
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/opensc/
H A Dopensc_0.22.0.bb41 ${libdir}/pkcs11-spy.so \
46 ${libdir}/pkcs11/pkcs11-spy.so \
/OK3568_Linux_fs/buildroot/package/pcsc-lite/
H A Dpcsc-lite.mk12 PCSC_LITE_LICENSE = BSD-2-Clause (auth), BSD-3-Clause, GPL-3.0+ (demo, spy, tests), ISC (simclist)
/OK3568_Linux_fs/kernel/net/wireless/
H A DMakefile10 obj-$(CONFIG_WEXT_SPY) += wext-spy.o
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeosatelliteinfosource/
H A Dtestqgeosatelliteinfosource.cpp447 QSignalSpy spy(m_source, SIGNAL(requestTimeout())); in requestUpdate() local
458 QTRY_VERIFY_WITH_TIMEOUT(!spy.isEmpty() || !spyView.isEmpty(), 10); in requestUpdate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/nokia_services/places_semiauto/
H A Dtst_places.cpp281 QSignalSpy spy(reply, SIGNAL(finished())); in searchResultFields() local
282 QTRY_VERIFY_WITH_TIMEOUT(spy.count() == 1, Timeout); in searchResultFields()
/OK3568_Linux_fs/kernel/Documentation/input/devices/
H A Diforce-protocol.rst367 3. Play the effect, and watch what happens on the spy screen.
/OK3568_Linux_fs/kernel/Documentation/admin-guide/LSM/
H A DSmack.rst499 different labels is desired. One example is the familiar spy model of
/OK3568_Linux_fs/kernel/Documentation/driver-api/
H A Dpinctl.rst854 e.g. a GPIO input can be used to "spy" on the SPI/I2C/MMC signal while it is
/OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/
H A Dyuv420_p352x288.yuv3429 …;;;=:;<>=;8651/1432331231125754346)0s�F�;�������������������|������������|spyss�����������������…
3739 …24226313313240,%�4��y�~}~�����������������������������~����~||{spy|{yusrpsvvvpeae+�…
4344 ~�x��������������xpkw������������{spy�}ik|���������������~{yxsnicaV\Z�"&-/…
5131 ….00157;:996431143441221144443441-% !��z���������������}������������}spy�jd����������������…