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.c207 struct recognition_context *last_model_context = stdev->root_model_context; in fetch_model_with_handle() local
208 while(last_model_context) { in fetch_model_with_handle()
209 if (last_model_context->model_handle == *model_handle) { in fetch_model_with_handle()
210 model_context = last_model_context; in fetch_model_with_handle()
213 last_model_context = last_model_context->next; in fetch_model_with_handle()
222 struct recognition_context *last_model_context = stdev->root_model_context; in get_model_handle_with_uuid() local
223 while(last_model_context) { in get_model_handle_with_uuid()
224 if (check_uuid_equality(last_model_context->model_uuid, uuid)) { in get_model_handle_with_uuid()
225 model_handle_str = &last_model_context->model_handle; in get_model_handle_with_uuid()
228 last_model_context = last_model_context->next; in get_model_handle_with_uuid()
[all …]