Home
last modified time | relevance | path

Searched refs:last_model_context (Results 1 – 1 of 1) sorted by relevance

/hardware/libhardware/modules/soundtrigger/
Dsound_trigger_hw.c206 struct recognition_context *last_model_context = stdev->root_model_context; in fetch_model_with_handle() local
207 while(last_model_context) { in fetch_model_with_handle()
208 if (last_model_context->model_handle == *model_handle) { in fetch_model_with_handle()
209 model_context = last_model_context; in fetch_model_with_handle()
212 last_model_context = last_model_context->next; in fetch_model_with_handle()
221 struct recognition_context *last_model_context = stdev->root_model_context; in get_model_handle_with_uuid() local
222 while(last_model_context) { in get_model_handle_with_uuid()
223 if (check_uuid_equality(last_model_context->model_uuid, uuid)) { in get_model_handle_with_uuid()
224 model_handle_str = &last_model_context->model_handle; in get_model_handle_with_uuid()
227 last_model_context = last_model_context->next; in get_model_handle_with_uuid()
[all …]