Lines Matching full:uuid
151 // UUIDs for effect types have been generated from http://www.itu.int/ITU-T/asn1/uuid.html
157 { 0xfd90ff00, 0x0b55, 0x11e2, 0x892e, { 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66 } }, // uuid
169 { 0x08fa98b0, 0x0b56, 0x11e2, 0x892e, { 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66 } }, // uuid
181 { 0xe9e87eb0, 0x0b55, 0x11e2, 0x892e, { 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66 } }, // uuid
214 uint32_t Adnc_UuidToProcId(const effect_uuid_t * uuid)
218 if (memcmp(uuid, sAdncUuidTable[i], sizeof(*uuid)) == 0) {
712 const effect_descriptor_t *AdncBundle_GetDescriptor(const effect_uuid_t *uuid)
716 if (memcmp(&adnc_pfx_descriptors[i]->uuid, uuid, sizeof(effect_uuid_t)) == 0) {
952 int adnc_create(const effect_uuid_t *uuid,
957 ALOGV("adnc_create: uuid: %08x session %d IO: %d", uuid->timeLow, sessionId, ioId);
971 desc = AdncBundle_GetDescriptor(uuid);
973 ALOGW(" adnc_create: fx not found uuid: %08x", uuid->timeLow);
1042 int adnc_get_descriptor(const effect_uuid_t *uuid, effect_descriptor_t *pDescriptor) {
1043 if (pDescriptor == NULL || uuid == NULL){
1048 const effect_descriptor_t *desc = AdncBundle_GetDescriptor(uuid);