Home
last modified time | relevance | path

Searched refs:HasJournalRecord (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/system/bta/has/
Dhas_journal.h34 struct HasJournalRecord { struct
47 HasJournalRecord(const HasCtpOp& op, void* context) in HasJournalRecord() argument
56 HasJournalRecord(const HasCtpNtf& ntf) : event(ntf) { in HasJournalRecord() function
64 HasJournalRecord(uint8_t value, bool is_feat_change) : event(value) { in HasJournalRecord() function
77 std::ostream& operator<<(std::ostream& os, const HasJournalRecord& r);
111 using HasJournal = CacheList<HasJournalRecord, kHasJournalNumRecords>;
Dhas_client.cc60 using bluetooth::le_audio::has::HasJournalRecord;
477 device->has_journal_.Append(HasJournalRecord(operation, context)); in CpReadAllPresetsOperation()
511 device.has_journal_.Append(HasJournalRecord(operation, context)); in CpPresetIndexOperationWriteReq()
666 device.has_journal_.Append(HasJournalRecord(operation, context)); in CpPresetsCycleOperationWriteReq()
719 device.has_journal_.Append(HasJournalRecord(operation, context)); in CpWritePresetNameOperationWriteReq()
1121 device->has_journal_.Append(HasJournalRecord(features, true)); in OnHasFeaturesValue()
1188 device.has_journal_.Append(HasJournalRecord(ntf)); in OnHasPresetReadResponseNotification()
1256 device.has_journal_.Append(HasJournalRecord(nt)); in OnHasPresetGenericUpdate()
1357 device.has_journal_.Append(HasJournalRecord(nt)); in OnHasPresetAvailabilityChanged()
1397 device.has_journal_.Append(HasJournalRecord(nt)); in OnHasPresetDeleted()
[all …]
Dhas_journal.cc25 std::ostream& operator<<(std::ostream& os, const HasJournalRecord& r) { in operator <<()