Lines Matching refs:uuid
84 // UUIDs for effect types have been generated from http://www.itu.int/ITU-T/asn1/uuid.html
90 { 0x0f8d0d2a, 0x59e5, 0x45fe, 0xb6e4, { 0x24, 0x8c, 0x8a, 0x79, 0x91, 0x09 } }, // uuid
102 { 0x1d97bb0b, 0x9e2f, 0x4403, 0x9ae3, { 0x58, 0xc2, 0x55, 0x43, 0x06, 0xf8 } }, // uuid
115 // { 0x0dd49521, 0x8c59, 0x40b1, 0xb403, { 0xe0, 0x8d, 0x5f, 0x01, 0x87, 0x5e } }, // uuid
148 static uint32_t uuid_to_id(const effect_uuid_t * uuid)
152 if (memcmp(uuid, uuid_to_id_table[i], sizeof(*uuid)) == 0)
462 static const effect_descriptor_t *get_descriptor(const effect_uuid_t *uuid)
466 if (memcmp(&descriptors[i]->uuid, uuid, sizeof(effect_uuid_t)) == 0)
663 static int lib_create(const effect_uuid_t *uuid,
668 ALOGV("lib_create: uuid: %08x session %d IO: %d", uuid->timeLow, sessionId, ioId);
678 desc = get_descriptor(uuid);
681 ALOGW("lib_create: fx not found uuid: %08x", uuid->timeLow);
724 static int lib_get_descriptor(const effect_uuid_t *uuid,
729 if (pDescriptor == NULL || uuid == NULL)
735 desc = get_descriptor(uuid);