Lines Matching refs:uuid
152 static uint32_t uuid_to_id(const effect_uuid_t * uuid) in uuid_to_id() argument
156 if (memcmp(uuid, uuid_to_id_table[i], sizeof(*uuid)) == 0) in uuid_to_id()
476 static const effect_descriptor_t *get_descriptor(const effect_uuid_t *uuid) in get_descriptor() argument
480 if (memcmp(&descriptors[i]->uuid, uuid, sizeof(effect_uuid_t)) == 0) in get_descriptor()
679 static int lib_create(const effect_uuid_t *uuid, in lib_create() argument
684 ALOGV("lib_create: uuid: %08x session %d IO: %d", uuid->timeLow, sessionId, ioId); in lib_create()
694 desc = get_descriptor(uuid); in lib_create()
697 ALOGW("lib_create: fx not found uuid: %08x", uuid->timeLow); in lib_create()
740 static int lib_get_descriptor(const effect_uuid_t *uuid, in lib_get_descriptor() argument
745 if (pDescriptor == NULL || uuid == NULL) in lib_get_descriptor()
751 desc = get_descriptor(uuid); in lib_get_descriptor()