• Home
  • Raw
  • Download

Lines Matching refs:Result

27 using ::android::hardware::tv::tuner::V1_0::Result;
49 Result DemuxClient::setFrontendDataSource(sp<FrontendClient> frontendClient) { in setFrontendDataSource()
56 Result res = mDemux->setFrontendDataSource(frontendClient->getId()); in setFrontendDataSource()
60 return Result::INVALID_STATE; in setFrontendDataSource()
71 if (ClientHelper::getServiceSpecificErrorCode(s) != Result::SUCCESS) { in openFilter()
94 if (ClientHelper::getServiceSpecificErrorCode(s) != Result::SUCCESS) { in openTimeFilter()
116 if (ClientHelper::getServiceSpecificErrorCode(s) != Result::SUCCESS) { in getAvSyncHwId()
124 Result res; in getAvSyncHwId()
127 [&](Result r, uint32_t id) { in getAvSyncHwId()
131 if (res == Result::SUCCESS) { in getAvSyncHwId()
143 if (ClientHelper::getServiceSpecificErrorCode(s) != Result::SUCCESS) { in getAvSyncTime()
151 Result res; in getAvSyncTime()
153 [&](Result r, uint64_t ts) { in getAvSyncTime()
157 if (res == Result::SUCCESS) { in getAvSyncTime()
171 if (ClientHelper::getServiceSpecificErrorCode(s) != Result::SUCCESS) { in openDvr()
190 Result DemuxClient::connectCiCam(int ciCamId) { in connectCiCam()
200 return Result::INVALID_STATE; in connectCiCam()
203 Result DemuxClient::disconnectCiCam() { in disconnectCiCam()
213 return Result::INVALID_STATE; in disconnectCiCam()
216 Result DemuxClient::close() { in close()
224 Result res = mDemux->close(); in close()
229 return Result::INVALID_STATE; in close()
241 Result res; in openHidlFilter()
243 [&](Result r, const sp<IFilter>& filter) { in openHidlFilter()
247 if (res != Result::SUCCESS || hidlFilter == NULL) { in openHidlFilter()
260 Result res; in openHidlTimeFilter()
262 [&](Result r, const sp<ITimeFilter>& timeFilterSp) { in openHidlTimeFilter()
267 if (res != Result::SUCCESS || timeFilter == NULL) { in openHidlTimeFilter()
281 Result res; in openHidlDvr()
283 [&](Result r, const sp<IDvr>& dvr) { in openHidlDvr()
287 if (res != Result::SUCCESS || hidlDvr == NULL) { in openHidlDvr()