Home
last modified time | relevance | path

Searched refs:lnbLive (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/tv/tuner/1.0/vts/functional/
DVtsHalTvTunerV1_0TestConfigurations.h61 static LnbLiveHardwareConnections lnbLive; variable
147 TunerTestingConfigReader1_0::connectLnbLive(lnbLive); in connectHardwaresToTestCases()
181 feIsValid &= lnbLive.support ? frontendMap.find(lnbLive.frontendId) != frontendMap.end() : true; in validateConnections()
233 filterIsValid &= lnbLive.support ? (filterMap.find(lnbLive.audioFilterId) != filterMap.end() && in validateConnections()
234 filterMap.find(lnbLive.videoFilterId) != filterMap.end()) in validateConnections()
244 bool lnbIsValid = lnbLive.support ? lnbMap.find(lnbLive.lnbId) != lnbMap.end() : true; in validateConnections()
263 if (lnbLive.support) { in validateConnections()
264 for (auto msgName : lnbLive.diseqcMsgs) { in validateConnections()
DVtsHalTvTunerV1_0TargetTest.cpp435 if (!lnbLive.support) { in TEST_P()
438 if (lnbMap[lnbLive.lnbId].name.compare(emptyHardwareId) == 0) { in TEST_P()
445 ASSERT_TRUE(mLnbTests.openLnbByName(lnbMap[lnbLive.lnbId].name, id)); in TEST_P()
448 ASSERT_TRUE(mLnbTests.setVoltage(lnbMap[lnbLive.lnbId].voltage)); in TEST_P()
449 ASSERT_TRUE(mLnbTests.setTone(lnbMap[lnbLive.lnbId].tone)); in TEST_P()
450 ASSERT_TRUE(mLnbTests.setSatellitePosition(lnbMap[lnbLive.lnbId].position)); in TEST_P()
451 for (auto msgName : lnbLive.diseqcMsgs) { in TEST_P()
599 if (!lnbLive.support) { in TEST_P()
602 broadcastSingleFilterTestWithLnb(filterMap[lnbLive.videoFilterId], in TEST_P()
603 frontendMap[lnbLive.frontendId], lnbMap[lnbLive.lnbId]); in TEST_P()
/hardware/interfaces/tv/tuner/aidl/vts/functional/
DVtsHalTvTunerTestConfigurations.h73 static LnbLiveHardwareConnections lnbLive; variable
216 lnbLive_configs = {lnbLive}; in generateLnbLiveConfigurations()
715 lnbLive.support = true; in determineLnbLive()
799 TunerTestingConfigAidlReader1_0::connectLnbLive(lnbLive); in connectHardwaresToTestCases()
835 feIsValid &= lnbLive.support ? frontendMap.find(lnbLive.frontendId) != frontendMap.end() : true; in validateConnections()
899 filterIsValid &= lnbLive.support in validateConnections()
900 ? filterMap.find(lnbLive.audioFilterId) != filterMap.end() && in validateConnections()
901 filterMap.find(lnbLive.videoFilterId) != filterMap.end() in validateConnections()
911 for (auto& filterId : lnbLive.extraFilters) { in validateConnections()
974 bool lnbIsValid = lnbLive.support ? lnbMap.find(lnbLive.lnbId) != lnbMap.end() : true; in validateConnections()
[all …]
DVtsHalTvTunerTargetTest.cpp652 if (!lnbLive.support) { in TEST_P()
661 lnbLive = combination; in TEST_P()
662 if (lnbMap[lnbLive.lnbId].name.compare(emptyHardwareId) == 0) { in TEST_P()
669 ASSERT_TRUE(mLnbTests.openLnbByName(lnbMap[lnbLive.lnbId].name, id)); in TEST_P()
672 ASSERT_TRUE(mLnbTests.setVoltage(lnbMap[lnbLive.lnbId].voltage)); in TEST_P()
673 ASSERT_TRUE(mLnbTests.setTone(lnbMap[lnbLive.lnbId].tone)); in TEST_P()
674 ASSERT_TRUE(mLnbTests.setSatellitePosition(lnbMap[lnbLive.lnbId].position)); in TEST_P()
675 for (auto msgName : lnbLive.diseqcMsgs) { in TEST_P()
1357 if (!lnbLive.support) { in TEST_P()
1366 lnbLive = combination; in TEST_P()
[all …]
/hardware/interfaces/tv/tuner/config/
DTunerTestingConfigReaderV1_0.h526 static void connectLnbLive(LnbLiveHardwareConnections& lnbLive) { in connectLnbLive()
529 lnbLive.support = true; in connectLnbLive()
531 lnbLive.support = false; in connectLnbLive()
535 lnbLive.frontendId = lnbLiveConfig.getFrontendConnection(); in connectLnbLive()
536 lnbLive.audioFilterId = lnbLiveConfig.getAudioFilterConnection(); in connectLnbLive()
537 lnbLive.videoFilterId = lnbLiveConfig.getVideoFilterConnection(); in connectLnbLive()
538 lnbLive.lnbId = lnbLiveConfig.getLnbConnection(); in connectLnbLive()
541 lnbLive.diseqcMsgs.push_back(msgName); in connectLnbLive()
DTunerTestingConfigAidlReaderV1_0.h656 static void connectLnbLive(LnbLiveHardwareConnections& lnbLive) { in connectLnbLive()
659 lnbLive.support = true; in connectLnbLive()
662 lnbLive.support = false; in connectLnbLive()
666 lnbLive.frontendId = lnbLiveConfig.getFrontendConnection(); in connectLnbLive()
667 lnbLive.audioFilterId = lnbLiveConfig.getAudioFilterConnection(); in connectLnbLive()
668 lnbLive.videoFilterId = lnbLiveConfig.getVideoFilterConnection(); in connectLnbLive()
669 lnbLive.lnbId = lnbLiveConfig.getLnbConnection(); in connectLnbLive()
672 lnbLive.diseqcMsgs.push_back(msgName); in connectLnbLive()
677 lnbLive.extraFilters = optionalFilters; in connectLnbLive()