Lines Matching refs:uuid
175 // UUIDs for effect types have been generated from http://www.itu.int/ITU-T/asn1/uuid.html
181 { 0xaa8130e0, 0x66fc, 0x11e0, 0xbad0, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } }, // uuid
193 { 0xbb392ec0, 0x8d4d, 0x11e0, 0xa896, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } }, // uuid
205 { 0xc06c8400, 0x8e06, 0x11e0, 0x9cb6, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } }, // uuid
240 uint32_t UuidToProcId(const effect_uuid_t * uuid)
244 if (memcmp(uuid, sUuidToPreProcTable[i], sizeof(*uuid)) == 0) {
1139 const effect_descriptor_t *PreProc_GetDescriptor(const effect_uuid_t *uuid)
1143 if (memcmp(&sDescriptors[i]->uuid, uuid, sizeof(effect_uuid_t)) == 0) {
1841 int PreProcessingLib_Create(const effect_uuid_t *uuid,
1846 ALOGV("EffectCreate: uuid: %08x session %d IO: %d", uuid->timeLow, sessionId, ioId);
1856 desc = PreProc_GetDescriptor(uuid);
1858 ALOGW("EffectCreate: fx not found uuid: %08x", uuid->timeLow);
1893 int PreProcessingLib_GetDescriptor(const effect_uuid_t *uuid,
1896 if (pDescriptor == NULL || uuid == NULL){
1900 const effect_descriptor_t *desc = PreProc_GetDescriptor(uuid);