Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 25 of 290) sorted by relevance

12345678910>>...12

/hardware/interfaces/audio/effect/all-versions/default/
DEnvironmentalReverbEffect.cpp37 const t_reverb_settings& halProperties, IEnvironmentalReverbEffect::AllProperties* properties) { in propertiesFromHal() argument
38 properties->roomLevel = halProperties.roomLevel; in propertiesFromHal()
39 properties->roomHfLevel = halProperties.roomHFLevel; in propertiesFromHal()
40 properties->decayTime = halProperties.decayTime; in propertiesFromHal()
41 properties->decayHfRatio = halProperties.decayHFRatio; in propertiesFromHal()
42 properties->reflectionsLevel = halProperties.reflectionsLevel; in propertiesFromHal()
43 properties->reflectionsDelay = halProperties.reflectionsDelay; in propertiesFromHal()
44 properties->reverbLevel = halProperties.reverbLevel; in propertiesFromHal()
45 properties->reverbDelay = halProperties.reverbDelay; in propertiesFromHal()
46 properties->diffusion = halProperties.diffusion; in propertiesFromHal()
[all …]
DAutomaticGainControlEffect.cpp36 const t_agc_settings& halProperties, IAutomaticGainControlEffect::AllProperties* properties) { in propertiesFromHal() argument
37 properties->targetLevelMb = halProperties.targetLevel; in propertiesFromHal()
38 properties->compGainMb = halProperties.compGain; in propertiesFromHal()
39 properties->limiterEnabled = halProperties.limiterEnabled; in propertiesFromHal()
43 const IAutomaticGainControlEffect::AllProperties& properties, t_agc_settings* halProperties) { in propertiesToHal() argument
44 halProperties->targetLevel = properties.targetLevelMb; in propertiesToHal()
45 halProperties->compGain = properties.compGainMb; in propertiesToHal()
46 halProperties->limiterEnabled = properties.limiterEnabled; in propertiesToHal()
225 const IAutomaticGainControlEffect::AllProperties& properties) { in setAllProperties() argument
227 propertiesToHal(properties, &halProperties); in setAllProperties()
[all …]
DNoiseSuppressionEffect.cpp36 INoiseSuppressionEffect::AllProperties* properties) { in propertiesFromHal() argument
37 properties->level = Level(halProperties.level); in propertiesFromHal()
38 properties->type = Type(halProperties.type); in propertiesFromHal()
42 const INoiseSuppressionEffect::AllProperties& properties, t_ns_settings* halProperties) { in propertiesToHal() argument
43 halProperties->level = static_cast<uint32_t>(properties.level); in propertiesToHal()
44 halProperties->type = static_cast<uint32_t>(properties.type); in propertiesToHal()
218 const INoiseSuppressionEffect::AllProperties& properties) { in setAllProperties() argument
220 propertiesToHal(properties, &halProperties); in setAllProperties()
227 AllProperties properties; in getAllProperties() local
228 propertiesFromHal(halProperties, &properties); in getAllProperties()
[all …]
DEqualizerEffect.cpp38 IEqualizerEffect::AllProperties* properties) { in propertiesFromHal() argument
39 properties->curPreset = halProperties.curPreset; in propertiesFromHal()
44 properties->bandLevels.setToExternal(const_cast<int16_t*>(signedBandLevels), in propertiesFromHal()
49 const IEqualizerEffect::AllProperties& properties, t_equalizer_settings** halProperties) { in propertiesToHal() argument
50 size_t bandsSize = properties.bandLevels.size() * sizeof(uint16_t); in propertiesToHal()
53 (*halProperties)->curPreset = properties.curPreset; in propertiesToHal()
54 (*halProperties)->numBands = properties.bandLevels.size(); in propertiesToHal()
55 memcpy((*halProperties)->bandLevels, &properties.bandLevels[0], bandsSize); in propertiesToHal()
279 const IEqualizerEffect::AllProperties& properties) { in setAllProperties() argument
281 std::vector<uint8_t> halBuffer = propertiesToHal(properties, &halPropertiesPtr); in setAllProperties()
[all …]
/hardware/google/gfxstream/guest/mesa/src/vulkan/device-select-layer/
Ddevice_select_layer.c187 …const struct instance_info *info, VkPhysicalDevice device, VkPhysicalDeviceProperties2 *properties) in get_device_properties() argument
189 info->GetPhysicalDeviceProperties(device, &properties->properties); in get_device_properties()
191 … if (info->GetPhysicalDeviceProperties2 && properties->properties.apiVersion >= VK_API_VERSION_1_1) in get_device_properties()
192 info->GetPhysicalDeviceProperties2(device, properties); in get_device_properties()
201 VkPhysicalDeviceProperties2 properties = (VkPhysicalDeviceProperties2){ in print_gpu()
205 properties.pNext = &ext_pci_properties; in print_gpu()
206 get_device_properties(info, device, &properties); in print_gpu()
208 switch(properties.properties.deviceType) { in print_gpu()
226 fprintf(stderr, " GPU %d: %x:%x \"%s\" %s", index, properties.properties.vendorID, in print_gpu()
227 properties.properties.deviceID, properties.properties.deviceName, type); in print_gpu()
[all …]
/hardware/interfaces/automotive/vehicle/aidl/impl/proto/android/hardware/automotive/vehicle/
DVehiclePropValue.proto29 * VehicleArea* enums or 0 for global properties. */
38 /* This is used for properties of types VehiclePropertyType#INT
42 /* This is used for properties of types VehiclePropertyType#FLOAT
46 /* This is used for properties of type VehiclePropertyType#INT64 */
49 /* This is used for properties of type VehiclePropertyType#BYTES */
52 /* This is used for properties of type VehiclePropertyType#STRING */
/hardware/interfaces/compatibility_matrices/build/
Dvintf_compatibility_matrix.go71 properties vintfCompatibilityMatrixProperties member
85 g.AddProperties(&g.properties)
93 android.ExtractSourcesDeps(ctx, g.properties.Srcs)
94 ctx.AddDependency(ctx.Module(), kernelConfigTag, g.properties.Kernel_configs...)
135 outputFilename := proptools.String(g.properties.Stem)
145 inputPaths := android.PathsForModuleSrc(ctx, g.properties.Srcs)
184 if proptools.String(g.properties.Stem) != "" {
185 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", proptools.String(g.properties.Stem))
/hardware/google/gfxstream/guest/mesa/src/vulkan/util/
Dvk_physical_device_properties_gen.py93 properties: typing.List[Property]
198 properties = []
200 properties.append(Property(p, struct_name))
201 return properties
237 properties = []
249 properties.append(Property(p, name))
251 …property_struct = PropertyStruct(c_type=full_name, s_type=s_type, name=name, properties=properties)
287 for prop in property_struct.properties:
/hardware/interfaces/broadcastradio/1.0/default/
DUtils.cpp170 Properties *properties, in convertPropertiesFromHal() argument
173 properties->classId = static_cast<Class>(halProperties->class_id); in convertPropertiesFromHal()
174properties->implementor.setToExternal(halProperties->implementor, strlen(halProperties->implemento… in convertPropertiesFromHal()
175 properties->product.setToExternal(halProperties->product, strlen(halProperties->product)); in convertPropertiesFromHal()
176 properties->version.setToExternal(halProperties->version, strlen(halProperties->version)); in convertPropertiesFromHal()
177 properties->serial.setToExternal(halProperties->serial, strlen(halProperties->serial)); in convertPropertiesFromHal()
178 properties->numTuners = halProperties->num_tuners; in convertPropertiesFromHal()
179 properties->numAudioSources = halProperties->num_audio_sources; in convertPropertiesFromHal()
180 properties->supportsCapture = halProperties->supports_capture; in convertPropertiesFromHal()
187 properties->bands.setToExternal(bands, halProperties->num_bands); in convertPropertiesFromHal()
[all …]
/hardware/interfaces/soundtrigger/2.0/default/
DSoundTriggerHalImpl.cpp72 ISoundTriggerHw::Properties properties; in getProperties() local
81 convertPropertiesFromHal(&properties, &halProperties); in getProperties()
83 ALOGV("getProperties implementor %s recognitionModes %08x", properties.implementor.c_str(), in getProperties()
84 properties.recognitionModes); in getProperties()
87 _hidl_cb(ret, properties); in getProperties()
317 ISoundTriggerHw::Properties* properties, const struct sound_trigger_properties* halProperties) { in convertPropertiesFromHal() argument
318 properties->implementor = halProperties->implementor; in convertPropertiesFromHal()
319 properties->description = halProperties->description; in convertPropertiesFromHal()
320 properties->version = halProperties->version; in convertPropertiesFromHal()
321 convertUuidFromHal(&properties->uuid, &halProperties->uuid); in convertPropertiesFromHal()
[all …]
/hardware/google/gfxstream/host/vulkan/
Dvk_util.cpp36 uint32_t typeFilter, VkMemoryPropertyFlags properties) { in findMemoryType() argument
42 (memProperties.memoryTypes[i].propertyFlags & properties) == properties) { in findMemoryType()
/hardware/qcom/sm7250/display/gralloc/
DQtiAllocator.cpp67 gralloc::GrallocProperties properties; in QtiAllocator() local
68 get_properties(&properties); in QtiAllocator()
70 buf_mgr_->SetGrallocDebugProperties(properties); in QtiAllocator()
144 gralloc::GrallocProperties properties; in QtiAllocator() local
145 get_properties(&properties); in QtiAllocator()
147 buf_mgr_->SetGrallocDebugProperties(properties); in QtiAllocator()
/hardware/qcom/sm8150/display/gralloc/
DQtiAllocator.cpp67 gralloc::GrallocProperties properties; in QtiAllocator() local
68 get_properties(&properties); in QtiAllocator()
70 buf_mgr_->SetGrallocDebugProperties(properties); in QtiAllocator()
144 gralloc::GrallocProperties properties; in QtiAllocator() local
145 get_properties(&properties); in QtiAllocator()
147 buf_mgr_->SetGrallocDebugProperties(properties); in QtiAllocator()
/hardware/interfaces/soundtrigger/2.3/default/
DSoundTriggerHw.cpp91 V2_0::ISoundTriggerHw::Properties properties; in getProperties() local
100 convertPropertiesFromHal(&properties, &halProperties); in getProperties()
102 ALOGV("getProperties implementor %s recognitionModes %08x", properties.implementor.c_str(), in getProperties()
103 properties.recognitionModes); in getProperties()
106 _hidl_cb(ret, properties); in getProperties()
335 V2_0::ISoundTriggerHw::Properties* properties, in convertPropertiesFromHal() argument
337 properties->implementor = halProperties->implementor; in convertPropertiesFromHal()
338 properties->description = halProperties->description; in convertPropertiesFromHal()
339 properties->version = halProperties->version; in convertPropertiesFromHal()
340 convertUuidFromHal(&properties->uuid, &halProperties->uuid); in convertPropertiesFromHal()
[all …]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/proposals/
DVK_QCOM_tile_properties.adoc10 …_tile_properties extension, which allows application to query the tile properties. This extension …
34 Create a new extension with API entrypoints that allows developer to query the tile properties.
53properties from the framebuffer. `pPropertiesCount` is a pointer to an integer related to the numb…
54properties available is returned in `pPropertiesCount`. `pPropertiesCount` must point to a variabl…
56properties available is determined by the number of merged subpasses, and each tile property is as…
68properties. `pRenderingInfo` is a pointer to the `VkRenderingInfo` structure specifying details of…
70 Support for querying tile properties is indicated by feature bit in a
84 properties.
86 A new structure is introduced to hold the tile properties.
112 === Query tile properties when using render pass
[all …]
/hardware/interfaces/audio/effect/5.0/
DINoiseSuppressionEffect.hal60 * Sets all properties at once.
62 setAllProperties(AllProperties properties) generates (Result retval);
65 * Gets all properties at once.
67 getAllProperties() generates (Result retval, AllProperties properties);
/hardware/interfaces/audio/effect/4.0/
DINoiseSuppressionEffect.hal60 * Sets all properties at once.
62 setAllProperties(AllProperties properties) generates (Result retval);
65 * Gets all properties at once.
67 getAllProperties() generates (Result retval, AllProperties properties);
DIAutomaticGainControlEffect.hal60 * Sets all properties at once.
62 setAllProperties(AllProperties properties) generates (Result retval);
65 * Gets all properties at once.
67 getAllProperties() generates (Result retval, AllProperties properties);
/hardware/interfaces/audio/effect/6.0/
DINoiseSuppressionEffect.hal60 * Sets all properties at once.
62 setAllProperties(AllProperties properties) generates (Result retval);
65 * Gets all properties at once.
67 getAllProperties() generates (Result retval, AllProperties properties);
/hardware/interfaces/audio/effect/2.0/
DINoiseSuppressionEffect.hal60 * Sets all properties at once.
62 setAllProperties(AllProperties properties) generates (Result retval);
65 * Gets all properties at once.
67 getAllProperties() generates (Result retval, AllProperties properties);
/hardware/interfaces/audio/effect/7.0/
DINoiseSuppressionEffect.hal60 * Sets all properties at once.
62 setAllProperties(AllProperties properties) generates (Result retval);
65 * Gets all properties at once.
67 getAllProperties() generates (Result retval, AllProperties properties);
DIAutomaticGainControlEffect.hal60 * Sets all properties at once.
62 setAllProperties(AllProperties properties) generates (Result retval);
65 * Gets all properties at once.
67 getAllProperties() generates (Result retval, AllProperties properties);
/hardware/interfaces/soundtrigger/aidl/cli/java/android/hardware/soundtrigger3/cli/
DSthalCli.java289 Properties properties = new Properties(); in getProperties() local
290 properties.implementor = "Android"; in getProperties()
291 properties.description = "Mock STHAL"; in getProperties()
292 properties.uuid = "a5af2d2a-4cc4-4b69-a22f-c9d5b6d492c3"; in getProperties()
293 properties.supportedModelArch = "Mock arch"; in getProperties()
294 properties.maxSoundModels = 2; in getProperties()
295 properties.maxKeyPhrases = 1; in getProperties()
296 properties.recognitionModes = in getProperties()
298 return properties; in getProperties()
/hardware/interfaces/automotive/vehicle/aidl/impl/default_config/JsonConfigLoader/test/
DJsonConfigLoaderUnitTest.cpp44 "properties": [{ in TEST_F()
80 "properties': {'a': 'b'}
85 << "'properties' field is not an array must cause error";
/hardware/interfaces/soundtrigger/2.2/default/
DSoundTriggerHw.cpp90 ISoundTriggerHw::Properties properties; in getProperties() local
99 convertPropertiesFromHal(&properties, &halProperties); in getProperties()
101 ALOGV("getProperties implementor %s recognitionModes %08x", properties.implementor.c_str(), in getProperties()
102 properties.recognitionModes); in getProperties()
105 _hidl_cb(ret, properties); in getProperties()
339 ISoundTriggerHw::Properties* properties, const struct sound_trigger_properties* halProperties) { in convertPropertiesFromHal() argument
340 properties->implementor = halProperties->implementor; in convertPropertiesFromHal()
341 properties->description = halProperties->description; in convertPropertiesFromHal()
342 properties->version = halProperties->version; in convertPropertiesFromHal()
343 convertUuidFromHal(&properties->uuid, &halProperties->uuid); in convertPropertiesFromHal()
[all …]

12345678910>>...12