/hardware/google/pixel/power-libperfmgr/aidl/ |
D | PowerExt.cpp | 59 bool supported = HintManager::GetInstance()->IsHintSupported(mode); in isModeSupported() local 61 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(mode)) { in isModeSupported() 62 supported = true; in isModeSupported() 64 LOG(INFO) << "PowerExt mode " << mode << " isModeSupported: " << supported; in isModeSupported() 65 *_aidl_return = supported; in isModeSupported() 88 bool supported = HintManager::GetInstance()->IsHintSupported(boost); in isBoostSupported() local 89 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(boost)) { in isBoostSupported() 90 supported = true; in isBoostSupported() 92 LOG(INFO) << "PowerExt boost " << boost << " isBoostSupported: " << supported; in isBoostSupported() 93 *_aidl_return = supported; in isBoostSupported()
|
D | Power.cpp | 207 bool supported = HintManager::GetInstance()->IsHintSupported(toString(type)); in isModeSupported() local 210 supported = true; in isModeSupported() 212 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(toString(type))) { in isModeSupported() 213 supported = true; in isModeSupported() 215 LOG(INFO) << "Power mode " << toString(type) << " isModeSupported: " << supported; in isModeSupported() 216 *_aidl_return = supported; in isModeSupported() 279 bool supported = HintManager::GetInstance()->IsHintSupported(toString(type)); in isBoostSupported() local 280 if (!supported && HintManager::GetInstance()->IsAdpfProfileSupported(toString(type))) { in isBoostSupported() 281 supported = true; in isBoostSupported() 283 LOG(INFO) << "Power boost " << toString(type) << " isBoostSupported: " << supported; in isBoostSupported() [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/commonvalidity/ |
D | fine_sync_commands_common.adoc | 9 must: only include access flags that are supported by one or more of the 11 <<synchronization-access-types-supported, table of supported access 15 must: only include access flags that are supported by one or more of the 17 <<synchronization-access-types-supported, table of supported access 25 access flags that are supported by one or more of the pipeline stages in 27 <<synchronization-access-types-supported, table of supported access 35 access flags that are supported by one or more of the pipeline stages in 37 <<synchronization-access-types-supported, table of supported access 45 access flags that are supported by one or more of the pipeline stages in 47 <<synchronization-access-types-supported, table of supported access [all …]
|
D | copy_image_command_buffer_common.adoc | 10 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported, 14 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported, 18 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported,
|
D | blit_image_command_buffer_common.adoc | 10 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported, 14 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported, 18 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported,
|
D | resolve_image_command_buffer_common.adoc | 10 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported, 14 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported, 18 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported,
|
D | copy_buffer_command_buffer_common.adoc | 10 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported, 14 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported, 18 <<limits-protectedNoFault, pname:protectedNoFault>> is not supported,
|
/hardware/interfaces/vibrator/aidl/vts/ |
D | VtsHalVibratorTargetTest.cpp | 244 std::vector<Effect> supported; in TEST_P() local 245 ASSERT_TRUE(vibrator->getSupportedEffects(&supported).isOk()); in TEST_P() 249 std::find(supported.begin(), supported.end(), effect) != supported.end(); in TEST_P() 271 std::vector<Effect> supported; in TEST_P() local 272 ASSERT_TRUE(vibrator->getSupportedEffects(&supported).isOk()); in TEST_P() 276 std::find(supported.begin(), supported.end(), effect) != supported.end(); in TEST_P() 401 std::vector<CompositePrimitive> supported; in TEST_P() local 403 EXPECT_EQ(Status::EX_NONE, vibrator->getSupportedPrimitives(&supported).exceptionCode()); in TEST_P() 407 std::find(supported.begin(), supported.end(), primitive) != supported.end(); in TEST_P() 419 std::vector<CompositePrimitive> supported; in TEST_P() local [all …]
|
/hardware/libhardware/modules/camera/3_4/metadata/ |
D | tagged_control_options_test.cpp | 66 bool supported = true; in TEST_F() local 68 EXPECT_CALL(*mock_options_, IsSupported(value)).WillOnce(Return(supported)); in TEST_F() 70 ASSERT_EQ(dut_->IsSupported(value), supported); in TEST_F() 74 bool supported = false; in TEST_F() local 76 EXPECT_CALL(*mock_options_, IsSupported(value)).WillOnce(Return(supported)); in TEST_F() 78 ASSERT_EQ(dut_->IsSupported(value), supported); in TEST_F()
|
/hardware/google/interfaces/media/c2/1.0/ |
D | IConfigurable.hal | 23 * This interface must be supported in all states of the inheriting 37 * best effort: the object must query all supported parameters and skip 50 * - BAD_INDEX - All supported parameters could be queried, but some 51 * parameters were not supported. 52 * - NO_MEMORY - Could not allocate memory for a supported parameter. 68 * effort: the object must update all supported configuration at best 82 * - BAD_INDEX - All supported parameters could be updated successfully, 83 * but some parameters were not supported. 84 * - NO_MEMORY - Some supported parameters could not be updated 106 * Returns a selected range of the set of supported parameters. [all …]
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/util/ |
D | vk_extensions.py | 22 self.supported = [] 27 supported = get_api_list(ext_elem.attrib['supported']) 29 assert not supported 30 supported = ['vulkan'] 32 if not supported: 48 ext.supported = supported 131 if api in ext.supported: 192 if api not in ext.supported:
|
/hardware/interfaces/vibrator/aidl/default/ |
D | Vibrator.cpp | 133 ndk::ScopedAStatus Vibrator::getSupportedPrimitives(std::vector<CompositePrimitive>* supported) { in getSupportedPrimitives() argument 134 *supported = { in getSupportedPrimitives() 146 std::vector<CompositePrimitive> supported; in getPrimitiveDuration() local 147 getSupportedPrimitives(&supported); in getPrimitiveDuration() 148 if (std::find(supported.begin(), supported.end(), primitive) == supported.end()) { in getPrimitiveDuration() 165 std::vector<CompositePrimitive> supported; in compose() local 166 getSupportedPrimitives(&supported); in compose() 175 if (std::find(supported.begin(), supported.end(), e.primitive) == supported.end()) { in compose() 280 ndk::ScopedAStatus Vibrator::getSupportedBraking(std::vector<Braking> *supported) { in getSupportedBraking() argument 281 *supported = { in getSupportedBraking()
|
/hardware/interfaces/soundtrigger/2.3/ |
D | types.hal | 24 * AudioCapabilities supported by the implemented HAL 46 * String naming the architecture used for running the supported models. 53 * supported by the firmware. 67 * supported by the firmware. 105 * start of supported value range inclusive 109 * end of supported value range inclusive
|
/hardware/interfaces/bluetooth/audio/2.0/vts/functional/ |
D | VtsHalBluetoothAudioV2_0TargetTest.cpp | 87 bool supported) { in ExtractValuesFromBitmask() argument 89 if (!supported) { in ExtractValuesFromBitmask() 95 if ((!(bitmasks & test_bit) && !supported) || in ExtractValuesFromBitmask() 96 ((bitmasks & test_bit) && supported)) { in ExtractValuesFromBitmask() 403 bool supported) { in GetSbcCodecSpecificSupportedList() argument 416 sbc_capability.sampleRate, 0xff, supported); in GetSbcCodecSpecificSupportedList() 419 0x0f, supported); in GetSbcCodecSpecificSupportedList() 422 0xf0, supported); in GetSbcCodecSpecificSupportedList() 425 0x0c, supported); in GetSbcCodecSpecificSupportedList() 428 0x03, supported); in GetSbcCodecSpecificSupportedList() [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | VK_EXT_line_rasterization.adoc | 21 in CAD applications and supported in other APIs like OpenGL. 22 Bresenham-style line rasterization is supported, smooth rectangular lines 23 (coverage to alpha) are supported, and stippled lines are supported for all
|
/hardware/interfaces/media/omx/1.0/ |
D | IOmxStore.hal | 59 * supported) while the value of 1 means "yes" (supported). 78 * Optional node attributes to describe supported values: 81 * key: 'max-supported-instances', value-type: num 83 * Optional node attributes for audio nodes to describe supported values: 87 * Optional node attributes for video nodes to describe supported values: 103 * Optional node attributes for decoders to describe supported values: 108 * Optional node attributes for video decoders to describe supported values: 111 * Optional node attributes for encoders to describe supported values: 149 * Information about nodes provided for a supported node role 176 * Return the prefix of names of supported nodes. [all …]
|
/hardware/interfaces/media/c2/1.0/ |
D | IConfigurable.hal | 22 * This interface must be supported in all states of the owning object, and must 47 * Querying is performed at best effort: the object must query all supported 67 * When the object type is @ref IComponent, this method must be supported in 82 * - `BAD_INDEX` - All supported parameters could be queried, but some 83 * parameters were not supported. 84 * - `NO_MEMORY` - Could not allocate memory for a supported parameter. 104 * Tuning is performed at best effort: the object must update all supported 109 * update to the closest supported value. A strict parameter update with an 123 * When the object type is @ref IComponent, this method must be supported in 141 * - `BAD_INDEX` - All supported parameters could be updated successfully, [all …]
|
/hardware/interfaces/vibrator/bench/ |
D | benchmark.cpp | 139 bool supported = true; in performBench() local 143 supported = false; in performBench() 147 if (!supported) { in performBench() 596 std::vector<Aidl::Effect> supported; in isEffectSupported() local 597 mVibrator->getSupportedEffects(&supported); in isEffectSupported() 598 return std::find(supported.begin(), supported.end(), effect) != supported.end(); in isEffectSupported() 602 std::vector<Aidl::Effect> supported; in isAlwaysOnEffectSupported() local 603 mVibrator->getSupportedAlwaysOnEffects(&supported); in isAlwaysOnEffectSupported() 604 return std::find(supported.begin(), supported.end(), effect) != supported.end(); in isAlwaysOnEffectSupported() 723 std::vector<Aidl::CompositePrimitive> supported; in isPrimitiveSupported() local [all …]
|
/hardware/interfaces/power/aidl/vts/ |
D | VtsHalPowerTargetTest.cpp | 216 bool supported; in TEST_P() local 217 ASSERT_TRUE(power->isModeSupported(mode, &supported).isOk()); in TEST_P() 220 bool supported; in TEST_P() local 221 ASSERT_TRUE(power->isModeSupported(mode, &supported).isOk()); in TEST_P() 223 ASSERT_FALSE(supported); in TEST_P() 242 bool supported; in TEST_P() local 243 ASSERT_TRUE(power->isBoostSupported(boost, &supported).isOk()); in TEST_P() 246 bool supported; in TEST_P() local 247 ASSERT_TRUE(power->isBoostSupported(boost, &supported).isOk()); in TEST_P() 249 ASSERT_FALSE(supported); in TEST_P() [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/ |
D | features.adoc | 11 corresponding feature is supported. 21 _Features_ describe functionality which is not supported on all 50 When a feature was implicitly supported and enabled in the extension, but an 55 consistently: either all must: be reported as supported, or none of them. 57 must: be supported. 90 To query supported features, call: 95 supported features. 99 supported on this physical device, and ename:VK_FALSE specifies that the 100 feature is not supported. 123 If an application wishes to enable all features supported by a device, it [all …]
|
/hardware/interfaces/automotive/can/1.0/vts/functional/ |
D | VtsHalCanControllerV1_0TargetTest.cpp | 111 const auto supported = getSupportedInterfaceTypes(); in isSupported() local 112 return std::find(supported.begin(), supported.end(), iftype) != supported.end(); in isSupported() 175 const auto supported = getSupportedInterfaceTypes(); in TEST_P() local 176 ASSERT_GT(supported.size(), 0u); in TEST_P() 322 auto supported = in TEST_P() local 324 ASSERT_TRUE(supported); in TEST_P() 338 auto supported = up(InterfaceType::SLCAN, name, "", ICanController::Result::BAD_INTERFACE_ID); in TEST_P() local 339 ASSERT_TRUE(supported); in TEST_P()
|
/hardware/interfaces/audio/7.1/ |
D | IStreamOut.hal | 40 * Indicates which latency modes are currently supported on this output stream. 43 * modes are currently supported. 44 * The framework can then call setLatencyMode() with one of the supported modes to select 52 * @return modes currrently supported latency modes. 57 * Set the callback interface for notifying changes in supported latency modes.
|
/hardware/interfaces/automotive/can/1.0/tools/libcanhaltools/ |
D | libcanhaltools.cpp | 43 hidl_vec<ICanController::InterfaceType> supported; in isSupported() local 44 if (!ctrl->getSupportedInterfaceTypes(hidl_utils::fill(&supported)).isOk()) return false; in isSupported() 45 return supported.contains(iftype); in isSupported()
|
/hardware/interfaces/bluetooth/audio/2.1/vts/functional/ |
D | VtsHalBluetoothAudioV2_1TargetTest.cpp | 90 bool supported) { in ExtractValuesFromBitmask() argument 92 if (!supported) { in ExtractValuesFromBitmask() 98 if ((!(bitmasks & test_bit) && !supported) || in ExtractValuesFromBitmask() 99 ((bitmasks & test_bit) && supported)) { in ExtractValuesFromBitmask() 490 bool supported) { in GetSbcCodecSpecificSupportedList() argument 505 sbc_capability.sampleRate, 0xff, supported); in GetSbcCodecSpecificSupportedList() 508 0x0f, supported); in GetSbcCodecSpecificSupportedList() 511 0xf0, supported); in GetSbcCodecSpecificSupportedList() 514 0x0c, supported); in GetSbcCodecSpecificSupportedList() 517 0x03, supported); in GetSbcCodecSpecificSupportedList() [all …]
|
/hardware/interfaces/neuralnetworks/1.0/vts/functional/ |
D | VtsHalNeuralnetworks.cpp | 41 model, [&fullySupportsModel](ErrorStatus status, const hidl_vec<bool>& supported) { in createPreparedModel() argument 43 ASSERT_NE(0ul, supported.size()); in createPreparedModel() 44 fullySupportsModel = std::all_of(supported.begin(), supported.end(), in createPreparedModel()
|