OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:halUuid
(Results
1 - 9
of
9
) sorted by null
/hardware/interfaces/audio/effect/2.0/default/
Conversions.cpp
42
std::string uuidToString(const effect_uuid_t&
halUuid
) {
45
halUuid
.timeLow,
46
halUuid
.timeMid,
47
halUuid
.timeHiAndVersion,
48
halUuid
.clockSeq,
49
halUuid
.node[0],
50
halUuid
.node[1],
51
halUuid
.node[2],
52
halUuid
.node[3],
53
halUuid
.node[4]
[
all
...]
EffectsFactory.cpp
59
const effect_uuid_t *
halUuid
= &halDescriptor.type;
60
if (memcmp(
halUuid
, FX_IID_AEC, sizeof(effect_uuid_t)) == 0) {
62
} else if (memcmp(
halUuid
, FX_IID_AGC, sizeof(effect_uuid_t)) == 0) {
64
} else if (memcmp(
halUuid
, SL_IID_BASSBOOST, sizeof(effect_uuid_t)) == 0) {
66
} else if (memcmp(
halUuid
, EFFECT_UIID_DOWNMIX, sizeof(effect_uuid_t)) == 0) {
68
} else if (memcmp(
halUuid
, SL_IID_ENVIRONMENTALREVERB, sizeof(effect_uuid_t)) == 0) {
70
} else if (memcmp(
halUuid
, SL_IID_EQUALIZER, sizeof(effect_uuid_t)) == 0) {
72
} else if (memcmp(
halUuid
, FX_IID_LOUDNESS_ENHANCER, sizeof(effect_uuid_t)) == 0) {
74
} else if (memcmp(
halUuid
, FX_IID_NS, sizeof(effect_uuid_t)) == 0) {
76
} else if (memcmp(
halUuid
, SL_IID_PRESETREVERB, sizeof(effect_uuid_t)) == 0)
[
all
...]
Conversions.h
36
std::string uuidToString(const effect_uuid_t&
halUuid
);
/hardware/interfaces/audio/common/2.0/default/
HidlUtils.h
61
static void uuidFromHal(const audio_uuid_t&
halUuid
, Uuid* uuid);
62
static void uuidToHal(const Uuid& uuid, audio_uuid_t*
halUuid
);
HidlUtils.cpp
321
void HidlUtils::uuidFromHal(const audio_uuid_t&
halUuid
, Uuid* uuid) {
322
uuid->timeLow =
halUuid
.timeLow;
323
uuid->timeMid =
halUuid
.timeMid;
324
uuid->versionAndTimeHigh =
halUuid
.timeHiAndVersion;
325
uuid->variantAndClockSeqHigh =
halUuid
.clockSeq;
326
memcpy(uuid->node.data(),
halUuid
.node, uuid->node.size());
329
void HidlUtils::uuidToHal(const Uuid& uuid, audio_uuid_t*
halUuid
) {
330
halUuid
->timeLow = uuid.timeLow;
331
halUuid
->timeMid = uuid.timeMid;
332
halUuid
->timeHiAndVersion = uuid.versionAndTimeHigh
[
all
...]
/frameworks/av/services/soundtrigger/
SoundTriggerHalHidl.cpp
298
void SoundTriggerHalHidl::convertUuidToHal(Uuid *
halUuid
,
301
halUuid
->timeLow = uuid->timeLow;
302
halUuid
->timeMid = uuid->timeMid;
303
halUuid
->versionAndTimeHigh = uuid->timeHiAndVersion;
304
halUuid
->variantAndClockSeqHigh = uuid->clockSeq;
305
memcpy(
halUuid
->node.data(), &uuid->node[0], sizeof(uuid->node));
309
const Uuid *
halUuid
)
311
uuid->timeLow =
halUuid
->timeLow;
312
uuid->timeMid =
halUuid
->timeMid;
313
uuid->timeHiAndVersion =
halUuid
->versionAndTimeHigh
[
all
...]
SoundTriggerHalHidl.h
115
void convertUuidToHal(Uuid *
halUuid
,
118
const Uuid *
halUuid
);
/hardware/interfaces/soundtrigger/2.0/default/
SoundTriggerHalImpl.cpp
345
const sound_trigger_uuid_t *
halUuid
)
347
uuid->timeLow =
halUuid
->timeLow;
348
uuid->timeMid =
halUuid
->timeMid;
349
uuid->versionAndTimeHigh =
halUuid
->timeHiAndVersion;
350
uuid->variantAndClockSeqHigh =
halUuid
->clockSeq;
351
memcpy(&uuid->node[0], &
halUuid
->node[0], 6);
354
void SoundTriggerHalImpl::convertUuidToHal(sound_trigger_uuid_t *
halUuid
,
357
halUuid
->timeLow = uuid->timeLow;
358
halUuid
->timeMid = uuid->timeMid;
359
halUuid
->timeHiAndVersion = uuid->versionAndTimeHigh
[
all
...]
SoundTriggerHalImpl.h
87
const sound_trigger_uuid_t *
halUuid
);
88
void convertUuidToHal(sound_trigger_uuid_t *
halUuid
,
Completed in 1227 milliseconds