Home
last modified time | relevance | path

Searched refs:caSystemId (Results 1 – 11 of 11) sorted by relevance

/aosp12/hardware/interfaces/tv/tuner/1.0/vts/functional/
H A DDescramblerTests.cpp19 AssertionResult DescramblerTests::createCasPlugin(int32_t caSystemId) { in createCasPlugin() argument
20 auto status = mMediaCasService->isSystemIdSupported(caSystemId); in createCasPlugin()
27 auto pluginStatus = mMediaCasService->createPluginExt(caSystemId, mCasListener); in createCasPlugin()
68 AssertionResult DescramblerTests::getKeyToken(int32_t caSystemId, string provisonStr, in getKeyToken() argument
70 if (createCasPlugin(caSystemId) != success()) { in getKeyToken()
H A DDescramblerTests.h102 AssertionResult getKeyToken(int32_t caSystemId, string provisonStr,
120 AssertionResult createCasPlugin(int32_t caSystemId);
/aosp12/hardware/interfaces/cas/1.0/vts/functional/
H A DVtsHalCasV1_0TargetTest.cpp245 ::testing::AssertionResult createCasPlugin(int32_t caSystemId);
257 ::testing::AssertionResult MediaCasHidlTest::createCasPlugin(int32_t caSystemId) { in createCasPlugin() argument
258 auto status = mService->isSystemIdSupported(caSystemId); in createCasPlugin()
263 status = mService->isDescramblerSupported(caSystemId); in createCasPlugin()
275 auto pluginStatus = mService->createPlugin(caSystemId, mCasListener); in createCasPlugin()
288 auto descramblerStatus = mService->createDescrambler(caSystemId); in createCasPlugin()
443 int32_t caSystemId = descriptors[i].caSystemId; in TEST_P() local
445 ASSERT_TRUE(createCasPlugin(caSystemId)); in TEST_P()
480 int32_t caSystemId = descriptors[i].caSystemId; in TEST_P() local
481 if (CLEAR_KEY_SYSTEM_ID == caSystemId) { in TEST_P()
/aosp12/hardware/interfaces/cas/1.1/vts/functional/
H A DVtsHalCasV1_1TargetTest.cpp288 ::testing::AssertionResult createCasPlugin(int32_t caSystemId);
298 ::testing::AssertionResult MediaCasHidlTest::createCasPlugin(int32_t caSystemId) { in createCasPlugin() argument
299 auto status = mService->isSystemIdSupported(caSystemId); in createCasPlugin()
304 status = mService->isDescramblerSupported(caSystemId); in createCasPlugin()
316 auto pluginStatus = mService->createPluginExt(caSystemId, mCasListener); in createCasPlugin()
329 auto descramblerStatus = mService->createDescrambler(caSystemId); in createCasPlugin()
/aosp12/hardware/interfaces/cas/1.1/
H A DIMediaCasService.hal33 * @param caSystemId the id of the CA system.
37 createPluginExt(int32_t caSystemId, ICasListener listener) generates (ICas cas);
/aosp12/hardware/interfaces/cas/1.2/vts/functional/
H A DVtsHalCasV1_2TargetTest.cpp324 ::testing::AssertionResult createCasPlugin(int32_t caSystemId);
336 ::testing::AssertionResult MediaCasHidlTest::createCasPlugin(int32_t caSystemId) { in createCasPlugin() argument
337 auto status = mService->isSystemIdSupported(caSystemId); in createCasPlugin()
342 status = mService->isDescramblerSupported(caSystemId); in createCasPlugin()
350 auto pluginStatus = mService->createPluginExt(caSystemId, mCasListener); in createCasPlugin()
363 auto descramblerStatus = mService->createDescrambler(caSystemId); in createCasPlugin()
/aosp12/hardware/interfaces/cas/1.0/default/
H A DFactoryLoader.h193 .caSystemId = it->CA_system_id, in queryPluginsFromPath()
/aosp12/hardware/interfaces/cas/1.1/default/
H A DFactoryLoader.h181 HidlCasPluginDescriptor{.caSystemId = it->CA_system_id, .name = it->name.c_str()}); in queryPluginsFromPath()
/aosp12/hardware/interfaces/cas/1.2/default/
H A DFactoryLoader.h181 HidlCasPluginDescriptor{.caSystemId = it->CA_system_id, .name = it->name.c_str()}); in queryPluginsFromPath()
/aosp12/hardware/interfaces/cas/1.0/
H A Dtypes.hal122 int32_t caSystemId;
/aosp12/frameworks/base/media/java/android/media/
H A DMediaCas.java426 mCASystemId = descriptor.caSystemId; in PluginDescriptor()