Searched defs:guid (Results 1 - 3 of 3) sorted by relevance

/frameworks/wilhelm/tests/examples/
H A DslesTestEffectCapabilities.cpp46 void guidToString(const SLInterfaceID guid, char *str) { argument
47 if ((NULL == guid) || (NULL == str)) {
51 guid->time_low,
52 guid->time_mid,
53 guid->time_hi_and_version,
54 guid->clock_seq,
55 guid->node[0],
56 guid->node[1],
57 guid->node[2],
58 guid
[all...]
/frameworks/av/soundtrigger/
H A DSoundTrigger.cpp241 status_t SoundTrigger::stringToGuid(const char *str, sound_trigger_uuid_t *guid) argument
243 if (str == NULL || guid == NULL) {
253 guid->timeLow = (uint32_t)tmp[0];
254 guid->timeMid = (uint16_t)tmp[1];
255 guid->timeHiAndVersion = (uint16_t)tmp[2];
256 guid->clockSeq = (uint16_t)tmp[3];
257 guid->node[0] = (uint8_t)tmp[4];
258 guid->node[1] = (uint8_t)tmp[5];
259 guid->node[2] = (uint8_t)tmp[6];
260 guid
267 guidToString(const sound_trigger_uuid_t *guid, char *str, size_t maxLen) argument
[all...]
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp446 status_t AudioEffect::stringToGuid(const char *str, effect_uuid_t *guid) argument
448 if (str == NULL || guid == NULL) {
458 guid->timeLow = (uint32_t)tmp[0];
459 guid->timeMid = (uint16_t)tmp[1];
460 guid->timeHiAndVersion = (uint16_t)tmp[2];
461 guid->clockSeq = (uint16_t)tmp[3];
462 guid->node[0] = (uint8_t)tmp[4];
463 guid->node[1] = (uint8_t)tmp[5];
464 guid->node[2] = (uint8_t)tmp[6];
465 guid
472 guidToString(const effect_uuid_t *guid, char *str, size_t maxLen) argument
[all...]

Completed in 107 milliseconds