Lines Matching refs:halProperties
90 struct sound_trigger_properties halProperties; in getProperties() local
98 ret = mHwDevice->get_properties(mHwDevice, &halProperties); in getProperties()
100 convertPropertiesFromHal(&properties, &halProperties); in getProperties()
336 const struct sound_trigger_properties* halProperties) { 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()
341 properties->maxSoundModels = halProperties->max_sound_models; in convertPropertiesFromHal()
342 properties->maxKeyPhrases = halProperties->max_key_phrases; in convertPropertiesFromHal()
343 properties->maxUsers = halProperties->max_users; in convertPropertiesFromHal()
344 properties->recognitionModes = halProperties->recognition_modes; in convertPropertiesFromHal()
345 properties->captureTransition = halProperties->capture_transition; in convertPropertiesFromHal()
346 properties->maxBufferMs = halProperties->max_buffer_ms; in convertPropertiesFromHal()
347 properties->concurrentCapture = halProperties->concurrent_capture; in convertPropertiesFromHal()
348 properties->triggerInEvent = halProperties->trigger_in_event; in convertPropertiesFromHal()
349 properties->powerConsumptionMw = halProperties->power_consumption_mw; in convertPropertiesFromHal()
355 const struct sound_trigger_properties_extended_1_3* halProperties = in convertPropertiesFromHal() local
357 convertPropertiesFromHal(&properties->base, &halProperties->base); in convertPropertiesFromHal()
358 properties->supportedModelArch = halProperties->supported_model_arch; in convertPropertiesFromHal()
359 properties->audioCapabilities = halProperties->audio_capabilities; in convertPropertiesFromHal()