/hardware/interfaces/tv/tuner/1.0/ |
D | IFrontend.hal | 29 * Set the frontend callback. 46 * Tunes the frontend to using the settings given. 48 * This locks the frontend to a frequency by providing signal 53 * @param settings Signal delivery information the frontend uses to 66 * If the method completes successfully the frontend is no longer tuned and no data 88 * Scan the frontend to use the settings given. 90 * This uses the frontend to start a scan from signal delivery information. 95 * @param settings Signal delivery information which the frontend uses to 97 * @param type the type which the frontend uses to scan the signal. 109 * If the method completes successfully, the frontend stop previous [all …]
|
D | ITuner.hal | 44 * 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.
|
D | ILnb.hal | 22 * 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.
|
D | IDemux.hal | 31 * 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.
|
D | IFrontendCallback.hal | 21 * Notify the client that a new event happened on the frontend.
|
D | types.hal | 1252 * 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 * The frontend has locked to the signal specified by the tune method. 1344 * The frontend is unable to lock to the signal specified by the tune method. 1348 * The frontend has lost the lock to the signal specified by the tune method. 1444 * PLP information in a frequency band for ATSC3.0 frontend. 1564 * A list of PLP status for tuned PLPs for ATSC3 frontend.
|
/hardware/interfaces/tv/tuner/1.1/ |
D | IFrontend.hal | 31 * Tunes the frontend to using the settings given. 33 * This locks the frontend to a frequency by providing signal 38 * @param settings Signal delivery information the frontend uses to 52 * Scan the frontend to use the settings given. 54 * This uses the frontend to start a scan from signal delivery information. 59 * @param settings Signal delivery information which the frontend uses to 61 * @param type the type which the frontend uses to scan the signal. 75 * The client may use this to link CI-CAM to a frontend. CI bypass mode requires that the 76 * CICAM also receives the TS concurrently from the frontend when the Demux is receiving the TS 77 * directly from the frontend. [all …]
|
D | types.hal | 63 * An invalid frenquency that can be used as the default value of the frontend setting. 77 * An invalid frontend ID. 620 * Uncorrectable Error Counts of the frontend's Physical Layer Pipe (PLP) 641 * Roll Off Type status of the frontend. 645 * If the frontend currently supports MISO or not. 649 * If the frontend code rate is linear or not. 690 * Uncorrectable Error Counts of the frontend's Physical Layer Pipe (PLP) 715 * Roll Off Type status of the frontend. 719 * If the frontend currently supports MISO or not. 723 * If the frontend code rate is linear or not.
|
/hardware/interfaces/tv/tuner/1.0/vts/functional/ |
D | FrontendTests.cpp | 50 void FrontendCallback::tuneTestOnEventReceive(sp<IFrontend>& frontend, FrontendSettings settings) { in tuneTestOnEventReceive() argument 51 Result result = frontend->tune(settings); in tuneTestOnEventReceive() 65 void FrontendCallback::tuneTestOnLock(sp<IFrontend>& frontend, FrontendSettings settings) { in tuneTestOnLock() argument 66 Result result = frontend->tune(settings); in tuneTestOnLock() 80 void FrontendCallback::scanTest(sp<IFrontend>& frontend, FrontendConfig config, in scanTest() argument 91 Result result = frontend->scan(config.settings, type); in scanTest() 111 Result result = frontend->scan(config.settings, type); in scanTest() 218 mService->openFrontendById(frontendId, [&](Result result, const sp<IFrontend>& frontend) { in openFrontendById() argument 219 mFrontend = frontend; in openFrontendById()
|
D | FrontendTests.h | 79 void tuneTestOnEventReceive(sp<IFrontend>& frontend, FrontendSettings settings); 80 void tuneTestOnLock(sp<IFrontend>& frontend, FrontendSettings settings); 81 void scanTest(sp<IFrontend>& frontend, FrontendConfig config, FrontendScanType type); 125 void scanTest(FrontendConfig frontend, FrontendScanType type);
|
/hardware/interfaces/tv/tuner/aidl/vts/functional/ |
D | FrontendTests.h | 52 void tuneTestOnLock(std::shared_ptr<IFrontend>& frontend, FrontendSettings settings); 53 void scanTest(std::shared_ptr<IFrontend>& frontend, FrontendConfig config, 103 void scanTest(FrontendConfig frontend, FrontendScanType type);
|
D | FrontendTests.cpp | 107 void FrontendCallback::tuneTestOnLock(std::shared_ptr<IFrontend>& frontend, in tuneTestOnLock() argument 109 ndk::ScopedAStatus result = frontend->tune(settings); in tuneTestOnLock() 123 void FrontendCallback::scanTest(std::shared_ptr<IFrontend>& frontend, FrontendConfig config, in scanTest() argument 134 ndk::ScopedAStatus result = frontend->scan(config.settings, type); in scanTest() 154 result = frontend->scan(config.settings, type); in scanTest()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/ |
D | __init__.py | 5 from .frontend import *
|
/hardware/interfaces/tv/tuner/1.1/vts/functional/ |
D | FrontendTests.h | 80 void tuneTestOnLock(sp<IFrontend>& frontend, FrontendSettings settings, 82 void scanTest(sp<IFrontend>& frontend, FrontendConfig1_1 config, FrontendScanType type); 131 void scanTest(FrontendConfig1_1 frontend, FrontendScanType type);
|
D | FrontendTests.cpp | 101 void FrontendCallback::tuneTestOnLock(sp<IFrontend>& frontend, FrontendSettings settings, in tuneTestOnLock() argument 104 frontend_1_1 = android::hardware::tv::tuner::V1_1::IFrontend::castFrom(frontend); in tuneTestOnLock() 124 void FrontendCallback::scanTest(sp<IFrontend>& frontend, FrontendConfig1_1 config, in scanTest() argument 127 frontend_1_1 = android::hardware::tv::tuner::V1_1::IFrontend::castFrom(frontend); in scanTest() 265 mService->openFrontendById(frontendId, [&](Result result, const sp<IFrontend>& frontend) { in openFrontendById() argument 266 mFrontend = frontend; in openFrontendById()
|
/hardware/google/gfxstream/ |
D | meson_options.txt | 95 description : 'enable gallium vdpau frontend.', 110 description : 'enable gallium omx frontend.', 125 description : 'enable gallium va frontend.', 139 description : 'enable gallium xa frontend.', 146 description : 'build gallium "nine" Direct3D 9.x frontend.', 153 description : 'build gallium D3D10 WDDM UMD frontend.', 161 description : 'build gallium "clover" OpenCL frontend.', 168 description : 'build gallium "rusticl" OpenCL frontend.', 183 description : 'build gallium "clover" OpenCL frontend with SPIR-V ' +
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/proposals/ |
D | VK_EXT_mutable_descriptor_type.adoc | 272 … more direct SM 6.6-style integration, it is possible to implement this in a HLSL frontend as such: 276 …- HLSL frontend emits `OpVariable` runtime array aliases as required when a descriptor is loaded i…
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/ |
D | ChangeLog.adoc | 3499 * Add -version option to 'makeSpec' frontend build script. 6158 overridden using the `-genpath` option to the frontend scripts like
|