Home
last modified time | relevance | path

Searched refs:frontend (Results 1 – 7 of 7) sorted by relevance

/hardware/interfaces/tv/tuner/1.0/
DIFrontend.hal52 * @param settings Signal delivery information which frontend can use to
76 * It is used by the client to release the frontend instance. HAL clear
86 * Scan the frontend to use the settings given.
88 * This uses the frontend to start a scan from signal delivery information.
93 * @param settings Signal delivery information which the frontend uses to
95 * @param type the type which the frontend uses to scan the signal.
107 * If the method completes successfully, the frontend stop previous
117 * Gets the statuses of the frontend.
119 * This retrieve the statuses of the frontend for given status types.
134 * Sets Low-Noise Block downconverter (LNB) for satellite frontend.
[all …]
DITuner.hal44 * It is used by the client to create a frontend instance.
46 * @param frontendId the id of the frontend to be opened.
51 * @return frontend the newly created frontend interface.
53 openFrontendById(FrontendId frontendId) generates (Result result, IFrontend frontend);
91 * Retrieve the frontend's information.
93 * @param frontendId the id of the frontend to be inquiried.
97 * @return info the frontend's information.
DILnb.hal22 * A Tuner LNB (low-noise block downconverter) is used by satellite frontend
81 * the device comes back to the client through frontend's callback
89 * INVALID_STATE if the frontend can't send DiSEqc Message, such as
90 * cable frontend.
DIDemux.hal31 * Set a frontend resource as data input of the demux
33 * It is used by the client to specify a hardware frontend as data source of
141 * from the frontend as the input by default, and must change to use the
155 * output from the frontend as the input after this call take place.
DIFrontendCallback.hal21 * Notify the client that a new event happened on the frontend.
Dtypes.hal1252 * Locked HIERARCHY for DVBT2 frontend.
1257 * Locked Plp Ids for DVBT2 frontend.
1261 * Locked group Ids for DVBT2 frontend.
1273 * PLP status in a tuned frequency band for ATSC3 frontend.
1329 * A list of PLP status in a tuned frequency band for ATSC3 frontend.
1340 * If frontend locked the signal which is specified by tune method, HAL sends
1345 * If frontend can't locked the signal which is specified by tune method,
1350 * If frontend detect that the locked signal get lost, HAL sends LOST_LOCK
1447 * PLP information in a frequency band for ATSC3.0 frontend.
1567 * A list of PLP status for tuned PLPs for ATSC3 frontend.
/hardware/interfaces/tv/tuner/1.0/vts/functional/
DVtsHalTvTunerV1_0TargetTest.cpp193 void testOnEvent(sp<IFrontend>& frontend, FrontendSettings settings);
194 void testOnDiseqcMessage(sp<IFrontend>& frontend, FrontendSettings settings);
206 void FrontendCallback::testOnEvent(sp<IFrontend>& frontend, FrontendSettings settings) { in testOnEvent() argument
207 Result result = frontend->tune(settings); in testOnEvent()
220 void FrontendCallback::testOnDiseqcMessage(sp<IFrontend>& frontend, FrontendSettings settings) { in testOnDiseqcMessage() argument
221 Result result = frontend->tune(settings); in testOnDiseqcMessage()
704 mService->openFrontendById(frontendId, [&](Result result, const sp<IFrontend>& frontend) { in createFrontend() argument
705 mFrontend = frontend; in createFrontend()