HomeSort by relevance Sort by last modified time
    Searched refs:hal (Results 1 - 25 of 434) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/interfaces/graphics/composer/2.2/utils/passthrough/include/composer-passthrough/2.2/
HwcLoader.h 23 #include <composer-hal/2.2/Composer.h>
24 #include <composer-hal/2.2/ComposerHal.h>
43 auto hal = createHalWithAdapter(module); local
44 if (!hal) {
48 return createComposer(std::move(hal)).release();
52 static std::unique_ptr<hal::ComposerHal> createHal(const hw_module_t* module) {
53 auto hal = std::make_unique<HwcHal>(); local
54 return hal->initWithModule(module) ? std::move(hal) : nullptr;
58 static std::unique_ptr<hal::ComposerHal> createHalWithAdapter(const hw_module_t* module)
64 auto hal = std::make_unique<HwcHal>(); local
    [all...]
  /hardware/interfaces/graphics/mapper/2.1/utils/passthrough/include/mapper-passthrough/2.1/
GrallocLoader.h 22 #include <mapper-hal/2.1/Mapper.h>
23 #include <mapper-hal/2.1/MapperHal.h>
42 auto hal = createHal(module); local
43 if (!hal) {
46 return createMapper(std::move(hal));
50 static std::unique_ptr<hal::MapperHal> createHal(const hw_module_t* module) {
54 auto hal = std::make_unique<Gralloc1Hal>(); local
55 return hal->initWithModule(module) ? std::move(hal) : nullptr;
58 auto hal = std::make_unique<Gralloc0Hal>() local
    [all...]
  /hardware/interfaces/graphics/allocator/2.0/utils/passthrough/include/allocator-passthrough/2.0/
GrallocLoader.h 25 #include <allocator-hal/2.0/Allocator.h>
46 auto hal = createHal(module); local
47 if (!hal) {
50 return createAllocator(std::move(hal));
71 static std::unique_ptr<hal::AllocatorHal> createHal(const hw_module_t* module) {
75 auto hal = std::make_unique<Gralloc1Hal>(); local
76 return hal->initWithModule(module) ? std::move(hal) : nullptr;
79 auto hal = std::make_unique<Gralloc0Hal>(); local
80 return hal->initWithModule(module) ? std::move(hal) : nullptr
    [all...]
  /test/vts/script/
create-image.sh 18 rm ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/automotive/ -rf
19 rm ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/camera/ -rf
20 rm ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/gnss/ -rf
21 rm ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/nfc/ -rf
22 rm ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/sensors/ -rf
23 rm ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/vibrator/ -rf
24 rm ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/vr/ -rf
25 rm ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/tv/ -rf
29 mkdir ${ANDROID_BUILD_TOP}/test/vts/testcases/hal -p
30 touch ${ANDROID_BUILD_TOP}/test/vts/testcases/hal/__init__.p
    [all...]
  /hardware/libhardware/modules/usbcamera/
HotplugThread.cpp 26 HotplugThread::HotplugThread(CameraHAL *hal)
27 : mModule(hal) {
HotplugThread.h 39 explicit HotplugThread(CameraHAL *hal);
  /test/vts/tools/build/tasks/list/
vts_spec_file_list.mk 17 test/vts/specification/hal/conventional/bluetooth/1.0/BluetoothHalV1bt_interface_t.vts \
18 test/vts/specification/hal/conventional/bluetooth/1.0/BluetoothHalV1.vts \
19 test/vts/specification/hal/conventional/light/1.0/LightHalV1.vts \
20 test/vts/specification/hal/conventional/camera/3.4/CameraHalV3.vts \
21 test/vts/specification/hal/conventional/camera/3.4/CameraHalV3camera3_device_ops_t.vts \
22 test/vts/specification/hal/conventional/camera/2.1/CameraHalV2hw_device_t.vts \
23 test/vts/specification/hal/conventional/camera/2.1/CameraHalV2.vts \
24 test/vts/specification/hal/conventional/wifi/1.0/WifiHalV1.vts \
25 test/vts/specification/hal/conventional/gps/1.0/GpsHalV1GpsInterface.vts \
26 test/vts/specification/hal/conventional/gps/1.0/GpsHalV1.vts
    [all...]
  /hardware/interfaces/graphics/composer/2.1/utils/passthrough/include/composer-passthrough/2.1/
HwcLoader.h 25 #include <composer-hal/2.1/Composer.h>
51 auto hal = createHalWithAdapter(module); local
52 if (!hal) {
56 return createComposer(std::move(hal));
77 static std::unique_ptr<hal::ComposerHal> createHal(const hw_module_t* module) {
78 auto hal = std::make_unique<HwcHal>(); local
79 return hal->initWithModule(module) ? std::move(hal) : nullptr;
83 static std::unique_ptr<hal::ComposerHal> createHalWithAdapter(const hw_module_t* module) {
89 auto hal = std::make_unique<HwcHal>() local
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
PropertyTimeoutException.java 17 package com.android.car.hal;
23 * usually happens during boot-up meaning that Vehicle HAL is not ready to get or set that property.
SensorBase.java 16 package com.android.car.hal;
  /hardware/interfaces/graphics/composer/2.2/utils/hal/include/composer-hal/2.2/
Composer.h 24 #include <composer-hal/2.1/Composer.h>
25 #include <composer-hal/2.2/ComposerClient.h>
32 namespace hal { namespace in namespace:android::hardware::graphics::composer::V2_2
37 template <typename Interface, typename Hal>
38 class ComposerImpl : public V2_1::hal::detail::ComposerImpl<Interface, Hal> {
40 static std::unique_ptr<ComposerImpl> create(std::unique_ptr<Hal> hal) {
41 return std::make_unique<ComposerImpl>(std::move(hal));
44 ComposerImpl(std::unique_ptr<Hal> hal) : BaseType2_1(std::move(hal)) {
    [all...]
ComposerCommandEngine.h 24 #include <composer-hal/2.1/ComposerCommandEngine.h>
25 #include <composer-hal/2.2/ComposerHal.h>
26 #include <composer-hal/2.2/ComposerResources.h>
33 namespace hal { namespace in namespace:android::hardware::graphics::composer::V2_2
35 class ComposerCommandEngine : public V2_1::hal::ComposerCommandEngine {
37 ComposerCommandEngine(ComposerHal* hal, ComposerResources* resources)
38 : BaseType2_1(hal, resources), mHal(hal) {}
92 using BaseType2_1 = V2_1::hal::ComposerCommandEngine;
98 } // namespace hal
    [all...]
  /hardware/interfaces/graphics/mapper/2.0/utils/passthrough/include/mapper-passthrough/2.0/
GrallocLoader.h 30 #include <mapper-hal/2.0/Mapper.h>
83 // Inherit from V2_*::hal::Mapper and override imported buffer management functions
107 auto hal = createHal(module); local
108 if (!hal) {
111 return createMapper(std::move(hal));
132 static std::unique_ptr<hal::MapperHal> createHal(const hw_module_t* module) {
136 auto hal = std::make_unique<Gralloc1Hal>(); local
137 return hal->initWithModule(module) ? std::move(hal) : nullptr;
140 auto hal = std::make_unique<Gralloc0Hal>() local
    [all...]
  /hardware/qcom/neuralnetworks/hvxservice/1.0/
android.hardware.neuralnetworks@1.0-service-hvx.rc 18 class hal
  /system/bt/test/suite/gatt/
gatt_test.h 20 #include "service/hal/bluetooth_gatt_interface.h"
27 public bluetooth::hal::BluetoothGattInterface::ClientObserver,
28 public bluetooth::hal::BluetoothGattInterface::ScannerObserver,
29 public bluetooth::hal::BluetoothGattInterface::ServerObserver {
59 // bluetooth::hal::BluetoothGattInterface::ClientObserver overrides
61 bluetooth::hal::BluetoothGattInterface* /* unused */, int status,
63 void ScanResultCallback(bluetooth::hal::BluetoothGattInterface* /* unused */,
67 // bluetooth::hal::BluetoothGattInterface::ServerObserver overrides
69 bluetooth::hal::BluetoothGattInterface* /* unused */, int status,
72 bluetooth::hal::BluetoothGattInterface* /* unused */, int status
    [all...]
  /test/vts-testcase/hal/audio/V2_0/target/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/audio/V2_0/target
  /test/vts-testcase/hal/audio/V2_0/target_profiling/
Android.mk 23 VTS_CONFIG_SRC_DIR := testcases/hal/audio/V2_0/target_profiling
  /test/vts-testcase/hal/audio/V4_0/target/
Android.mk 23 VTS_CONFIG_SRC_DIR := testcases/hal/audio/V4_0/target
  /test/vts-testcase/hal/audio/V4_0/target_profiling/
Android.mk 23 VTS_CONFIG_SRC_DIR := testcases/hal/audio/V4_0/target_profiling
  /test/vts-testcase/hal/authsecret/V1_0/target/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/authsecret/V1_0/target
  /test/vts-testcase/hal/bluetooth/V1_0/target/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/bluetooth/V1_0/target
  /test/vts-testcase/hal/bluetooth/V1_0/target_profiling/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/bluetooth/V1_0/target_profiling
  /test/vts-testcase/hal/bluetooth/V1_0/target_replay/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/bluetooth/V1_0/target_replay
  /test/vts-testcase/hal/boot/V1_0/target/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/boot/V1_0/target
  /test/vts-testcase/hal/boot/V1_0/target_profiling/
Android.mk 22 VTS_CONFIG_SRC_DIR := testcases/hal/boot/V1_0/target_profiling

Completed in 556 milliseconds

1 2 3 4 5 6 7 8 91011>>