Home
last modified time | relevance | path

Searched refs:statusTypes (Results 1 – 16 of 16) sorted by relevance

/aosp12/frameworks/av/services/tuner/aidl/android/media/tv/tuner/
H A DITunerFrontend.aidl96 TunerFrontendStatus[] getStatus(in int[] statusTypes); in getStatus() argument
101 TunerFrontendStatus[] getStatusExtended_1_1(in int[] statusTypes); in getStatusExtended_1_1() argument
/aosp12/hardware/interfaces/tv/tuner/1.0/default/
H A DFrontend.cpp125 Return<void> Frontend::getStatus(const hidl_vec<FrontendStatusType>& statusTypes, in getStatus() argument
130 for (int i = 0; i < statusTypes.size(); i++) { in getStatus()
131 FrontendStatusType type = statusTypes[i]; in getStatus()
H A DFrontend.h58 virtual Return<void> getStatus(const hidl_vec<FrontendStatusType>& statusTypes,
/aosp12/hardware/interfaces/tv/tuner/1.1/default/
H A DFrontend.h58 virtual Return<void> getStatus(const hidl_vec<FrontendStatusType>& statusTypes,
62 const hidl_vec<V1_1::FrontendStatusTypeExt1_1>& statusTypes,
H A DFrontend.cpp225 Return<void> Frontend::getStatus(const hidl_vec<FrontendStatusType>& statusTypes, in getStatus() argument
230 for (int i = 0; i < statusTypes.size(); i++) { in getStatus()
231 FrontendStatusType type = statusTypes[i]; in getStatus()
380 Return<void> Frontend::getStatusExt1_1(const hidl_vec<V1_1::FrontendStatusTypeExt1_1>& statusTypes, in getStatusExt1_1() argument
385 for (int i = 0; i < statusTypes.size(); i++) { in getStatusExt1_1()
386 V1_1::FrontendStatusTypeExt1_1 type = statusTypes[i]; in getStatusExt1_1()
/aosp12/hardware/interfaces/tv/tuner/1.0/vts/functional/
H A DFrontendTests.cpp249 void FrontendTests::verifyFrontendStatus(vector<FrontendStatusType> statusTypes, in verifyFrontendStatus() argument
255 mFrontend->getStatus(statusTypes, [&](Result result, const hidl_vec<FrontendStatus>& statuses) { in verifyFrontendStatus()
260 ASSERT_TRUE(realStatuses.size() == statusTypes.size()); in verifyFrontendStatus()
261 for (int i = 0; i < statusTypes.size(); i++) { in verifyFrontendStatus()
262 FrontendStatusType type = statusTypes[i]; in verifyFrontendStatus()
H A DFrontendTests.h118 void verifyFrontendStatus(vector<FrontendStatusType> statusTypes,
/aosp12/hardware/interfaces/tv/tuner/1.1/vts/functional/
H A DFrontendTests.cpp334 void FrontendTests::verifyFrontendStatusExt1_1(vector<FrontendStatusTypeExt1_1> statusTypes, in verifyFrontendStatusExt1_1() argument
348 statusTypes, [&](Result result, const hidl_vec<FrontendStatusExt1_1>& statuses) { in verifyFrontendStatusExt1_1()
353 ASSERT_TRUE(realStatuses.size() == statusTypes.size()); in verifyFrontendStatusExt1_1()
354 for (int i = 0; i < statusTypes.size(); i++) { in verifyFrontendStatusExt1_1()
355 FrontendStatusTypeExt1_1 type = statusTypes[i]; in verifyFrontendStatusExt1_1()
H A DFrontendTests.h120 void verifyFrontendStatusExt1_1(vector<FrontendStatusTypeExt1_1> statusTypes,
/aosp12/frameworks/av/services/tuner/
H A DTunerFrontend.h74 Status getStatus(const vector<int32_t>& statusTypes,
76 Status getStatusExtended_1_1(const vector<int32_t>& statusTypes,
H A DTunerFrontend.cpp290 Status TunerFrontend::getStatus(const vector<int32_t>& statusTypes, in getStatus() argument
300 for (auto s : statusTypes) { in getStatus()
316 Status TunerFrontend::getStatusExtended_1_1(const vector<int32_t>& statusTypes, in getStatusExtended_1_1() argument
326 for (auto s : statusTypes) { in getStatusExtended_1_1()
/aosp12/frameworks/base/media/jni/tuner/
H A DFrontendClient.h146 vector<FrontendStatus> getStatus(vector<FrontendStatusType> statusTypes);
152 vector<FrontendStatusTypeExt1_1> statusTypes);
H A DFrontendClient.cpp187 vector<FrontendStatus> FrontendClient::getStatus(vector<FrontendStatusType> statusTypes) { in getStatus() argument
193 for (auto t : statusTypes) { in getStatus()
203 if (mFrontend != NULL && statusTypes.size() > 0) { in getStatus()
205 mFrontend->getStatus(statusTypes, in getStatus()
220 vector<FrontendStatusTypeExt1_1> statusTypes) { in getStatusExtended_1_1() argument
226 for (auto t : statusTypes) { in getStatusExtended_1_1()
236 if (mFrontend_1_1 != NULL && statusTypes.size() > 0) { in getStatusExtended_1_1()
238 mFrontend_1_1->getStatusExt1_1(statusTypes, in getStatusExtended_1_1()
/aosp12/hardware/interfaces/tv/tuner/1.1/
H A DIFrontend.hal102 * @param statusTypes an array of the extended status types which the caller request.
110 getStatusExt1_1(vec<FrontendStatusTypeExt1_1> statusTypes)
/aosp12/hardware/interfaces/tv/tuner/1.0/
H A DIFrontend.hal123 * @param statusTypes an array of status type which the caller request.
132 getStatus(vec<FrontendStatusType> statusTypes)
/aosp12/frameworks/base/media/java/android/media/tv/tuner/
H A DTuner.java561 private native FrontendStatus nativeGetFrontendStatus(int[] statusTypes); in nativeGetFrontendStatus() argument
867 public FrontendStatus getFrontendStatus(@NonNull @FrontendStatusType int[] statusTypes) { in getFrontendStatus() argument
871 return nativeGetFrontendStatus(statusTypes); in getFrontendStatus()