/hardware/qcom/sdm845/media/mm-video-v4l2/vidc/venc/ |
D | Makefile.am | 64 sources = src/omx_video_base.cpp macro 65 sources += src/omx_video_encoder.cpp 66 sources += src/video_encoder_device_v4l2.cpp 67 sources += $(top_srcdir)/mm-video-v4l2/vidc/common/src/extra_data_handler.cpp 68 sources += $(top_srcdir)/mm-video-v4l2/vidc/common/src/vidc_color_converter.cpp 71 libOmxVenc_la_SOURCES = $(sources)
|
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/ |
D | Makefile.am | 82 sources = src/omx_video_base.cpp macro 83 sources += src/omx_video_encoder.cpp 84 sources += src/video_encoder_device_v4l2.cpp 85 sources += $(top_srcdir)/mm-video-v4l2/vidc/common/src/extra_data_handler.cpp 86 sources += $(top_srcdir)/mm-video-v4l2/vidc/common/src/vidc_color_converter.cpp 89 libOmxVenc_la_SOURCES = $(sources)
|
/hardware/qcom/sm8150/media/mm-video-v4l2/vidc/venc/ |
D | Makefile.am | 76 sources = src/omx_video_base.cpp macro 77 sources += src/omx_video_encoder.cpp 78 sources += src/video_encoder_device_v4l2.cpp 79 sources += $(top_srcdir)/mm-video-v4l2/vidc/common/src/vidc_common.cpp 80 sources += $(top_srcdir)/mm-video-v4l2/vidc/common/src/vidc_vendor_extensions.cpp 83 libOmxVenc_la_SOURCES = $(sources)
|
/hardware/interfaces/gnss/1.1/vts/functional/ |
D | gnss_hal_test_cases.cpp | 274 hidl_vec<IGnssConfiguration::BlacklistedSource> sources; in TEST_P() local 275 sources.resize(1); in TEST_P() 276 sources[0] = source_to_blacklist; in TEST_P() 278 auto result = gnss_configuration_hal->setBlacklist(sources); in TEST_P() 312 sources.resize(0); in TEST_P() 314 result = gnss_configuration_hal->setBlacklist(sources); in TEST_P() 396 hidl_vec<IGnssConfiguration::BlacklistedSource> sources; in TEST_P() local 397 sources.resize(1); in TEST_P() 398 sources[0] = source_to_blacklist; in TEST_P() 401 auto result = gnss_configuration_hal->setBlacklist(sources); in TEST_P() [all …]
|
/hardware/interfaces/gnss/2.1/vts/functional/ |
D | gnss_hal_test_cases.cpp | 407 hidl_vec<IGnssConfiguration::BlacklistedSource> sources; in TEST_P() local 408 sources.resize(1); in TEST_P() 409 sources[0] = source_to_blacklist; in TEST_P() 411 auto result = gnss_configuration_hal->setBlacklist_2_1(sources); in TEST_P() 445 sources.resize(0); in TEST_P() 447 result = gnss_configuration_hal->setBlacklist_2_1(sources); in TEST_P() 530 hidl_vec<IGnssConfiguration::BlacklistedSource> sources; in TEST_P() local 531 sources.resize(2); in TEST_P() 532 sources[0] = source_to_blacklist_1; in TEST_P() 533 sources[1] = source_to_blacklist_2; in TEST_P() [all …]
|
/hardware/interfaces/gnss/2.0/vts/functional/ |
D | gnss_hal_test_cases.cpp | 640 hidl_vec<IGnssConfiguration_1_1::BlacklistedSource> sources; in TEST_P() local 641 sources.resize(1); in TEST_P() 642 sources[0] = source_to_blacklist; in TEST_P() 644 auto result = gnss_configuration_hal->setBlacklist(sources); in TEST_P() 678 sources.resize(0); in TEST_P() 680 result = gnss_configuration_hal->setBlacklist(sources); in TEST_P() 764 hidl_vec<IGnssConfiguration_1_1::BlacklistedSource> sources; in TEST_P() local 765 sources.resize(1); in TEST_P() 766 sources[0] = source_to_blacklist; in TEST_P() 769 auto result = gnss_configuration_hal->setBlacklist(sources); in TEST_P() [all …]
|
/hardware/interfaces/gnss/1.1/ |
D | IGnssConfiguration.hal | 44 * The superset of all satellite sources provided, including wildcards, in the latest call 45 * to this method, is the set of satellites sources that must not be used in calculating 56 * should not be trusted for location on top of existing sources of similar information
|
D | IGnssCallback.hal | 55 * from other sources, which may happen at some arbitrary delay. Generally speaking, HAL
|
/hardware/interfaces/gnss/2.1/ |
D | IGnssConfiguration.hal | 48 * The superset of all satellite sources provided, including wildcards, in the latest call 49 * to this method, is the set of satellites sources that must not be used in calculating 60 * should not be trusted for location on top of existing sources of similar information
|
/hardware/interfaces/audio/core/all-versions/default/ |
D | Device.cpp | 271 Return<void> Device::createAudioPatch(const hidl_vec<AudioPortConfig>& sources, in createAudioPatch() argument 275 static_cast<AudioPatchHandle>(AudioHandleConsts::AUDIO_PATCH_HANDLE_NONE), sources, in createAudioPatch() 282 AudioPatchHandle patch, const hidl_vec<AudioPortConfig>& sources, in createOrUpdateAudioPatch() argument 286 std::unique_ptr<audio_port_config[]> halSources(HidlUtils::audioPortConfigsToHal(sources)); in createOrUpdateAudioPatch() 290 mDevice->create_audio_patch(mDevice, sources.size(), &halSources[0], in createOrUpdateAudioPatch() 452 const hidl_vec<AudioPortConfig>& sources, in updateAudioPatch() argument 456 auto [retval, patch] = createOrUpdateAudioPatch(previousPatch, sources, sinks); in updateAudioPatch()
|
D | PrimaryDevice.cpp | 108 Return<void> PrimaryDevice::createAudioPatch(const hidl_vec<AudioPortConfig>& sources, in createAudioPatch() argument 111 return mDevice->createAudioPatch(sources, sinks, _hidl_cb); in createAudioPatch() 181 const hidl_vec<AudioPortConfig>& sources, in updateAudioPatch() argument 184 return mDevice->updateAudioPatch(previousPatch, sources, sinks, _hidl_cb); in updateAudioPatch()
|
/hardware/interfaces/audio/core/all-versions/default/include/core/default/ |
D | Device.h | 92 Return<void> createAudioPatch(const hidl_vec<AudioPortConfig>& sources, 121 Return<void> updateAudioPatch(int32_t previousPatch, const hidl_vec<AudioPortConfig>& sources, 143 AudioPatchHandle patch, const hidl_vec<AudioPortConfig>& sources,
|
D | PrimaryDevice.h | 74 Return<void> createAudioPatch(const hidl_vec<AudioPortConfig>& sources, 103 Return<void> updateAudioPatch(int32_t previousPatch, const hidl_vec<AudioPortConfig>& sources,
|
/hardware/qcom/bt/msm8960/libbt-vendor/ |
D | vnd_buildcfg.mk | 17 generated_sources := $(local-generated-sources-dir)
|
/hardware/broadcom/libbt/ |
D | vnd_buildcfg.mk | 1 generated_sources := $(local-generated-sources-dir)
|
/hardware/interfaces/compatibility_matrices/ |
D | Android.mk | 42 my_gen_check_manifest := $(local-generated-sources-dir)/manifest.check.xml
|
D | compatibility_matrix.mk | 57 GEN := $(local-generated-sources-dir)/$(LOCAL_MODULE_STEM)
|
/hardware/interfaces/audio/6.0/ |
D | IDevice.hal | 165 * @param sources patch sources. 170 createAudioPatch(vec<AudioPortConfig> sources, vec<AudioPortConfig> sinks) 181 * @param sources new patch sources. 188 vec<AudioPortConfig> sources,
|
/hardware/qcom/msm8998/json-c/ |
D | README.md | 9 Caution: do **NOT** use sources from svn.metaparadigm.com,
|
/hardware/interfaces/audio/2.0/ |
D | IDevice.hal | 160 * @param sources patch sources. 165 createAudioPatch(vec<AudioPortConfig> sources, vec<AudioPortConfig> sinks)
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
D | AudioHardwareInterface.h | 286 const struct audio_port_config *sources,
|
/hardware/interfaces/audio/4.0/ |
D | IDevice.hal | 162 * @param sources patch sources. 167 createAudioPatch(vec<AudioPortConfig> sources, vec<AudioPortConfig> sinks)
|
/hardware/interfaces/audio/5.0/ |
D | IDevice.hal | 162 * @param sources patch sources. 167 createAudioPatch(vec<AudioPortConfig> sources, vec<AudioPortConfig> sinks)
|
/hardware/interfaces/automotive/audiocontrol/1.0/ |
D | IAudioControl.hal | 21 * Interacts with the car's audio subsystem to manage audio sources and volumes
|
/hardware/interfaces/automotive/audiocontrol/2.0/ |
D | IAudioControl.hal | 24 * Interacts with the car's audio subsystem to manage audio sources and volumes
|