Home
last modified time | relevance | path

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

/aosp12/hardware/interfaces/tv/tuner/1.0/vts/functional/
H A DVtsHalTvTunerV1_0TestConfigurations.h47 static map<string, FrontendConfig> frontendMap; variable
76 frontendMap[defaultFeId].type = FrontendType::DVBT; in initFrontendConfig()
77 frontendMap[defaultFeId].settings.dvbt(dvbtSettings); in initFrontendConfig()
85 frontendMap[defaultFeId].tuneStatusTypes = types; in initFrontendConfig()
87 frontendMap[defaultFeId].isSoftwareFe = true; in initFrontendConfig()
171 ? frontendMap.find(live.frontendId) != frontendMap.end() in validateConnections()
173 feIsValid &= scan.hasFrontendConnection ? frontendMap.find(scan.frontendId) != frontendMap.end() in validateConnections()
176 ? frontendMap.find(record.frontendId) != frontendMap.end() in validateConnections()
179 ? frontendMap.find(descrambling.frontendId) != frontendMap.end() in validateConnections()
181 feIsValid &= lnbLive.support ? frontendMap.find(lnbLive.frontendId) != frontendMap.end() : true; in validateConnections()
[all …]
H A DVtsHalTvTunerV1_0TargetTest.cpp414 mFrontendTests.tuneTest(frontendMap[live.frontendId]); in TEST_P()
422 mFrontendTests.scanTest(frontendMap[scan.frontendId], FrontendScanType::SCAN_AUTO); in TEST_P()
430 mFrontendTests.scanTest(frontendMap[scan.frontendId], FrontendScanType::SCAN_BLIND); in TEST_P()
465 mFrontendTests.getFrontendIdByType(frontendMap[live.frontendId].type, feId); in TEST_P()
491 mFrontendTests.getFrontendIdByType(frontendMap[live.frontendId].type, feId); in TEST_P()
567 broadcastSingleFilterTest(filterMap[live.videoFilterId], frontendMap[live.frontendId]); in TEST_P()
575 broadcastSingleFilterTest(filterMap[live.audioFilterId], frontendMap[live.frontendId]); in TEST_P()
594 broadcastSingleFilterTest(filterMap[live.videoFilterId], frontendMap[live.frontendId]); in TEST_P()
645 recordSingleFilterTest(filterMap[record.recordFilterId], frontendMap[record.frontendId], in TEST_P()
670 mFrontendTests.getFrontendIdByType(frontendMap[descrambling.frontendId].type, feId); in TEST_P()
[all …]
/aosp12/hardware/interfaces/tv/tuner/1.1/vts/functional/
H A DVtsHalTvTunerV1_1TestConfigurations.h61 static map<string, FrontendConfig1_1> frontendMap; variable
81 frontendMap[defaultFeId].config1_0.type = FrontendType::DVBT; in initFrontendConfig()
93 frontendMap[defaultFeId].tuneStatusTypes = types; in initFrontendConfig()
94 frontendMap[defaultFeId].expectTuneStatuses = statuses; in initFrontendConfig()
95 frontendMap[defaultFeId].config1_0.isSoftwareFe = true; in initFrontendConfig()
96 frontendMap[defaultFeId].canConnectToCiCam = true; in initFrontendConfig()
97 frontendMap[defaultFeId].ciCamId = 0; in initFrontendConfig()
98 frontendMap[defaultFeId].settingsExt1_1.settingExt.dvbt({ in initFrontendConfig()
156 bool feIsValid = frontendMap.find(live.frontendId) != frontendMap.end() && in validateConnections()
157 frontendMap.find(scan.frontendId) != frontendMap.end(); in validateConnections()
[all …]
H A DVtsHalTvTunerV1_1TargetTest.cpp216 configSingleFilterInDemuxTest(filterMap[live.videoFilterId], frontendMap[live.frontendId]); in TEST_P()
228 configSingleFilterInDemuxTest(filterMap[live.ipFilterId], frontendMap[live.frontendId]); in TEST_P()
238 frontendMap[live.frontendId]); in TEST_P()
246 recordSingleFilterTest(filterMap[record.recordFilterId], frontendMap[record.frontendId], in TEST_P()
255 mFrontendTests.tuneTest(frontendMap[live.frontendId]); in TEST_P()
263 mFrontendTests.scanTest(frontendMap[scan.frontendId], FrontendScanType::SCAN_BLIND); in TEST_P()
271 mediaFilterUsingSharedMemoryTest(filterMap[live.videoFilterId], frontendMap[live.frontendId]); in TEST_P()
284 if (!frontendMap[live.frontendId].canConnectToCiCam) { in TEST_P()
287 mFrontendTests.tuneTest(frontendMap[live.frontendId]); in TEST_P()
/aosp12/hardware/interfaces/tv/tuner/config/
H A DTunerTestingConfigReaderV1_1.h50 static void readFrontendConfig1_1(map<string, FrontendConfig1_1>& frontendMap) { in readFrontendConfig1_1()
54 frontendMap[it->first].config1_0 = it->second; in readFrontendConfig1_1()
76 frontendMap[id].settingsExt1_1.settingExt.dvbs( in readFrontendConfig1_1()
80 frontendMap[id].settingsExt1_1.settingExt.dvbt( in readFrontendConfig1_1()
85 frontendMap[id].config1_0.type = static_cast<FrontendType>( in readFrontendConfig1_1()
96 frontendMap[id].settingsExt1_1.endFrequency = in readFrontendConfig1_1()
100 frontendMap[id].tuneStatusTypes = types; in readFrontendConfig1_1()
101 frontendMap[id].expectTuneStatuses = statuses; in readFrontendConfig1_1()
102 getCiCamInfo(feConfig, frontendMap[id].canConnectToCiCam, frontendMap[id].ciCamId); in readFrontendConfig1_1()
H A DTunerTestingConfigReaderV1_0.h215 static void readFrontendConfig1_0(map<string, FrontendConfig>& frontendMap) { in readFrontendConfig1_0()
231 frontendMap.erase(string("FE_DEFAULT")); in readFrontendConfig1_0()
253 frontendMap[id].settings.dvbs(readDvbsFrontendSettings(feConfig)); in readFrontendConfig1_0()
257 frontendMap[id].settings.dvbt(readDvbtFrontendSettings(feConfig)); in readFrontendConfig1_0()
276 frontendMap[id].type = type; in readFrontendConfig1_0()
277 frontendMap[id].isSoftwareFe = feConfig.getIsSoftwareFrontend(); in readFrontendConfig1_0()
279 frontendMap[id].tuneStatusTypes = types; in readFrontendConfig1_0()
280 frontendMap[id].expectTuneStatuses = statuses; in readFrontendConfig1_0()