/hardware/interfaces/audio/effect/6.0/xml/api/ |
D | current.txt | 38 method public audio.effects.V6_0.DeviceType getType(); 40 method public void setType(audio.effects.V6_0.DeviceType); 43 public enum DeviceType { 45 enum_constant public static final audio.effects.V6_0.DeviceType AUDIO_DEVICE_IN_AUX_DIGITAL; 46 enum_constant public static final audio.effects.V6_0.DeviceType AUDIO_DEVICE_IN_BACK_MIC; 47 enum_constant public static final audio.effects.V6_0.DeviceType AUDIO_DEVICE_IN_BLUETOOTH_A2DP; 48 enum_constant public static final audio.effects.V6_0.DeviceType AUDIO_DEVICE_IN_BLUETOOTH_BLE; 49 …enum_constant public static final audio.effects.V6_0.DeviceType AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEAD… 50 enum_constant public static final audio.effects.V6_0.DeviceType AUDIO_DEVICE_IN_BUILTIN_MIC; 51 enum_constant public static final audio.effects.V6_0.DeviceType AUDIO_DEVICE_IN_BUS; [all …]
|
/hardware/interfaces/audio/effect/7.0/xml/api/ |
D | current.txt | 38 method public audio.effects.V7_0.DeviceType getType(); 40 method public void setType(audio.effects.V7_0.DeviceType); 43 public enum DeviceType { 45 enum_constant public static final audio.effects.V7_0.DeviceType AUDIO_DEVICE_IN_AUX_DIGITAL; 46 enum_constant public static final audio.effects.V7_0.DeviceType AUDIO_DEVICE_IN_BACK_MIC; 47 enum_constant public static final audio.effects.V7_0.DeviceType AUDIO_DEVICE_IN_BLUETOOTH_A2DP; 48 enum_constant public static final audio.effects.V7_0.DeviceType AUDIO_DEVICE_IN_BLUETOOTH_BLE; 49 …enum_constant public static final audio.effects.V7_0.DeviceType AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEAD… 50 enum_constant public static final audio.effects.V7_0.DeviceType AUDIO_DEVICE_IN_BUILTIN_MIC; 51 enum_constant public static final audio.effects.V7_0.DeviceType AUDIO_DEVICE_IN_BUS; [all …]
|
/hardware/google/gfxstream/guest/mesa/include/d3dadapter/ |
D | d3dadapter9.h | 42 …HRESULT (WINAPI *CheckDeviceFormat)(ID3DAdapter9 *This, D3DDEVTYPE DeviceType, D3DFORMAT AdapterFo… 43 …HRESULT (WINAPI *CheckDeviceMultiSampleType)(ID3DAdapter9 *This, D3DDEVTYPE DeviceType, D3DFORMAT … 44 …HRESULT (WINAPI *CheckDepthStencilMatch)(ID3DAdapter9 *This, D3DDEVTYPE DeviceType, D3DFORMAT Adap… 45 …HRESULT (WINAPI *CheckDeviceFormatConversion)(ID3DAdapter9 *This, D3DDEVTYPE DeviceType, D3DFORMAT… 46 HRESULT (WINAPI *GetDeviceCaps)(ID3DAdapter9 *This, D3DDEVTYPE DeviceType, D3DCAPS9 *pCaps); 47 …HRESULT (WINAPI *CreateDevice)(ID3DAdapter9 *This, UINT RealAdapter, D3DDEVTYPE DeviceType, HWND h… 48 …HRESULT (WINAPI *CreateDeviceEx)(ID3DAdapter9 *This, UINT RealAdapter, D3DDEVTYPE DeviceType, HWND… 77 …HRESULT WINAPI CheckDeviceFormat(D3DDEVTYPE DeviceType, D3DFORMAT AdapterFormat, DWORD Usage, D3DR… 78 …HRESULT WINAPI CheckDeviceMultiSampleType(D3DDEVTYPE DeviceType, D3DFORMAT SurfaceFormat, BOOL Win… 79 …HRESULT WINAPI CheckDepthStencilMatch(D3DDEVTYPE DeviceType, D3DFORMAT AdapterFormat, D3DFORMAT Re… [all …]
|
/hardware/interfaces/neuralnetworks/1.2/utils/include/nnapi/hal/1.2/ |
D | Conversions.h | 29 GeneralResult<DeviceType> unvalidatedConvert(const hal::V1_2::DeviceType& deviceType); 49 GeneralResult<DeviceType> convert(const hal::V1_2::DeviceType& deviceType); 69 nn::GeneralResult<DeviceType> unvalidatedConvert(const nn::DeviceType& deviceType); 89 nn::GeneralResult<DeviceType> convert(const nn::DeviceType& deviceType);
|
D | Device.h | 46 nn::GeneralResult<nn::DeviceType> getDeviceTypeFrom(V1_2::IDevice* device); 66 nn::DeviceType deviceType, std::vector<nn::Extension> extensions, 73 nn::DeviceType getType() const override; 103 const nn::DeviceType kDeviceType;
|
/hardware/interfaces/automotive/evs/aidl/impl/default/include/ |
D | ConfigManager.h | 59 enum class DeviceType : std::int32_t { enum 65 UNKNOWN = std::numeric_limits<std::underlying_type_t<DeviceType>>::max(), 83 static DeviceType deviceTypeFromSV(const std::string_view sv); 85 DeviceType deviceType{DeviceType::NONE};
|
/hardware/interfaces/neuralnetworks/aidl/utils/include/nnapi/hal/aidl/ |
D | InvalidDevice.h | 35 std::vector<Extension> extensions, DeviceType deviceType, 48 ndk::ScopedAStatus getType(DeviceType* deviceType) override; 69 const DeviceType kDeviceType;
|
D | Conversions.h | 65 GeneralResult<DeviceType> unvalidatedConvert(const aidl_hal::DeviceType& deviceType); 113 GeneralResult<DeviceType> convert(const aidl_hal::DeviceType& deviceType); 153 nn::GeneralResult<DeviceType> unvalidatedConvert(const nn::DeviceType& deviceType); 192 nn::GeneralResult<DeviceType> convert(const nn::DeviceType& deviceType);
|
D | Device.h | 50 nn::Version featureLevel, nn::DeviceType deviceType, 58 nn::DeviceType getType() const override; 91 const nn::DeviceType kDeviceType;
|
/hardware/interfaces/neuralnetworks/1.2/utils/src/ |
D | Conversions.cpp | 101 GeneralResult<DeviceType> unvalidatedConvert(const hal::V1_2::DeviceType& deviceType) { in unvalidatedConvert() 102 return static_cast<DeviceType>(deviceType); in unvalidatedConvert() 278 GeneralResult<DeviceType> convert(const hal::V1_2::DeviceType& deviceType) { in convert() 406 nn::GeneralResult<DeviceType> unvalidatedConvert(const nn::DeviceType& deviceType) { in unvalidatedConvert() 408 case nn::DeviceType::UNKNOWN: in unvalidatedConvert() 410 case nn::DeviceType::OTHER: in unvalidatedConvert() 411 case nn::DeviceType::CPU: in unvalidatedConvert() 412 case nn::DeviceType::GPU: in unvalidatedConvert() 413 case nn::DeviceType::ACCELERATOR: in unvalidatedConvert() 414 return static_cast<DeviceType>(deviceType); in unvalidatedConvert() [all …]
|
D | Device.cpp | 62 nn::GeneralResult<nn::DeviceType> deviceTypeCallback(V1_0::ErrorStatus status, in deviceTypeCallback() 63 DeviceType deviceType) { in deviceTypeCallback() 114 nn::GeneralResult<nn::DeviceType> getDeviceTypeFrom(V1_2::IDevice* device) { in getDeviceTypeFrom() 173 nn::DeviceType deviceType, std::vector<nn::Extension> extensions, in Device() 198 nn::DeviceType Device::getType() const { in getType()
|
/hardware/interfaces/neuralnetworks/utils/common/include/nnapi/hal/ |
D | InvalidDevice.h | 35 nn::DeviceType type, std::vector<nn::Extension> extensions, 42 nn::DeviceType getType() const override; 73 const nn::DeviceType kType;
|
/hardware/interfaces/neuralnetworks/1.2/vts/functional/ |
D | BasicTests.cpp | 78 Return<void> ret = kDevice->getType([](ErrorStatus status, DeviceType type) { in TEST_P() 80 EXPECT_TRUE(type == DeviceType::OTHER || type == DeviceType::CPU || in TEST_P() 81 type == DeviceType::GPU || type == DeviceType::ACCELERATOR); in TEST_P()
|
/hardware/interfaces/neuralnetworks/1.3/utils/include/nnapi/hal/1.3/ |
D | Device.h | 49 nn::DeviceType deviceType, std::vector<nn::Extension> extensions, 56 nn::DeviceType getType() const override; 86 const nn::DeviceType kDeviceType;
|
/hardware/interfaces/neuralnetworks/aidl/android/hardware/neuralnetworks/ |
D | IDevice.aidl | 23 import android.hardware.neuralnetworks.DeviceType; 212 DeviceType getType(); in getType()
|
D | DeviceType.aidl | 26 enum DeviceType { enum
|
/hardware/interfaces/neuralnetworks/aidl/aidl_api/android.hardware.neuralnetworks/current/android/hardware/neuralnetworks/ |
D | DeviceType.aidl | 36 enum DeviceType { enum
|
/hardware/interfaces/neuralnetworks/aidl/aidl_api/android.hardware.neuralnetworks/2/android/hardware/neuralnetworks/ |
D | DeviceType.aidl | 36 enum DeviceType { enum
|
/hardware/interfaces/neuralnetworks/aidl/aidl_api/android.hardware.neuralnetworks/1/android/hardware/neuralnetworks/ |
D | DeviceType.aidl | 36 enum DeviceType { enum
|
/hardware/interfaces/neuralnetworks/aidl/aidl_api/android.hardware.neuralnetworks/3/android/hardware/neuralnetworks/ |
D | DeviceType.aidl | 36 enum DeviceType { enum
|
/hardware/interfaces/neuralnetworks/aidl/aidl_api/android.hardware.neuralnetworks/4/android/hardware/neuralnetworks/ |
D | DeviceType.aidl | 36 enum DeviceType { enum
|
/hardware/interfaces/neuralnetworks/utils/common/src/ |
D | InvalidDevice.cpp | 35 nn::DeviceType type, std::vector<nn::Extension> extensions, in InvalidDevice() 58 nn::DeviceType InvalidDevice::getType() const { in getType()
|
/hardware/interfaces/neuralnetworks/aidl/utils/src/ |
D | Conversions.cpp | 157 GeneralResult<DeviceType> unvalidatedConvert(const aidl_hal::DeviceType& deviceType) { in unvalidatedConvert() 158 return static_cast<DeviceType>(deviceType); in unvalidatedConvert() 548 GeneralResult<DeviceType> convert(const aidl_hal::DeviceType& deviceType) { in convert() 840 nn::GeneralResult<DeviceType> unvalidatedConvert(const nn::DeviceType& deviceType) { in unvalidatedConvert() 842 case nn::DeviceType::UNKNOWN: in unvalidatedConvert() 844 case nn::DeviceType::OTHER: in unvalidatedConvert() 845 case nn::DeviceType::CPU: in unvalidatedConvert() 846 case nn::DeviceType::GPU: in unvalidatedConvert() 847 case nn::DeviceType::ACCELERATOR: in unvalidatedConvert() 848 return static_cast<DeviceType>(deviceType); in unvalidatedConvert() [all …]
|
D | InvalidDevice.cpp | 64 constexpr auto deviceType = DeviceType::OTHER; in create() 74 std::vector<Extension> extensions, DeviceType deviceType, in InvalidDevice() 114 ndk::ScopedAStatus InvalidDevice::getType(DeviceType* deviceType) { in getType()
|
D | Device.cpp | 83 nn::GeneralResult<nn::DeviceType> getDeviceTypeFrom(aidl_hal::IDevice* device) { in getDeviceTypeFrom() 85 DeviceType deviceType; in getDeviceTypeFrom() 152 nn::Version featureLevel, nn::DeviceType deviceType, in Device() 178 nn::DeviceType Device::getType() const { in getType()
|