Searched refs:lnbId (Results 1 – 10 of 10) sorted by relevance
/hardware/interfaces/tv/tuner/1.0/vts/functional/ |
D | LnbTests.cpp | 42 AssertionResult LnbTests::openLnbById(uint32_t lnbId) { in openLnbById() argument 44 mService->openLnbById(lnbId, [&](Result result, const sp<ILnb>& lnb) { in openLnbById() 53 mService->openLnbByName(lnbName, [&](Result result, uint32_t lnbId, const sp<ILnb>& lnb) { in openLnbByName() argument 55 id = lnbId; in openLnbByName()
|
D | VtsHalTvTunerV1_0TestConfigurations.h | 244 bool lnbIsValid = lnbLive.support ? lnbMap.find(lnbLive.lnbId) != lnbMap.end() : true; in validateConnections() 245 lnbIsValid &= lnbRecord.support ? lnbMap.find(lnbRecord.lnbId) != lnbMap.end() : true; in validateConnections()
|
D | FrontendTests.h | 117 AssertionResult setLnb(uint32_t lnbId);
|
D | FrontendTests.cpp | 387 AssertionResult FrontendTests::setLnb(uint32_t lnbId) { in setLnb() argument 392 return AssertionResult(mFrontend->setLnb(lnbId) == Result::SUCCESS); in setLnb()
|
/hardware/interfaces/tv/tuner/1.0/ |
D | ITuner.hal | 114 * Create a new instance of Lnb given a lnbId. 118 * @param lnbId the id of the LNB to be opened. 125 openLnbById(LnbId lnbId) generates (Result result, ILnb lnb); 134 * use lnbId return from this call. 139 * @return lnbId the id of the LNB to be opened. 142 openLnbByName(string lnbName) generates (Result result, LnbId lnbId, ILnb lnb);
|
D | IFrontend.hal | 142 * @param lnbId the Id of assigned LNB resource. 150 setLnb(LnbId lnbId) generates (Result result);
|
/hardware/interfaces/tv/tuner/1.0/default/ |
D | Tuner.cpp | 205 Return<void> Tuner::openLnbById(LnbId lnbId, openLnbById_cb _hidl_cb) { in openLnbById() argument 208 if (lnbId >= mLnbs.size()) { in openLnbById() 213 _hidl_cb(Result::SUCCESS, mLnbs[lnbId]); in openLnbById()
|
D | Tuner.h | 57 virtual Return<void> openLnbById(LnbId lnbId, openLnbById_cb _hidl_cb) override;
|
/hardware/interfaces/tv/tuner/1.1/default/ |
D | Tuner.h | 60 virtual Return<void> openLnbById(uint32_t lnbId, openLnbById_cb _hidl_cb) override;
|
D | Tuner.cpp | 294 Return<void> Tuner::openLnbById(V1_0::LnbId lnbId, openLnbById_cb _hidl_cb) { in openLnbById() argument 297 if (lnbId >= mLnbs.size()) { in openLnbById() 302 _hidl_cb(Result::SUCCESS, mLnbs[lnbId]); in openLnbById()
|