Searched refs:notes_ (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_tg/ |
H A D | avrcp_tg_connection.cpp | 42 notes_.insert(std::make_pair(AVRC_EVENT_ID_TRACK_CHANGED, true)); in AvrcTgConnectInfo() 43 notes_.insert(std::make_pair(AVRC_EVENT_ID_TRACK_REACHED_END, false)); in AvrcTgConnectInfo() 44 notes_.insert(std::make_pair(AVRC_EVENT_ID_TRACK_REACHED_START, false)); in AvrcTgConnectInfo() 52 notes_.insert(std::make_pair(AVRC_EVENT_ID_UIDS_CHANGED, false)); in AvrcTgConnectInfo() 53 notes_.insert(std::make_pair(AVRC_EVENT_ID_VOLUME_CHANGED, false)); in AvrcTgConnectInfo() 324 auto iter = info->notes_.find(notification); in EnableNotifyState() 325 if (iter != info->notes_.end()) { in EnableNotifyState() 341 auto iter = info->notes_.find(notification); in DisableNotifyState() 342 if (iter != info->notes_.end()) { in DisableNotifyState() 360 auto iter = info->notes_.find(notification); in IsNotifyStateEnabled() [all …]
|
H A D | avrcp_tg_connection.h | 63 std::map<uint8_t, bool> notes_ {}; // The notifications are enabled or not.
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_ct/ |
H A D | avrcp_ct_connection.cpp | 41 notes_.insert(std::make_pair(AVRC_EVENT_ID_TRACK_CHANGED, true)); in AvrcCtConnectInfo() 42 notes_.insert(std::make_pair(AVRC_EVENT_ID_TRACK_REACHED_END, true)); in AvrcCtConnectInfo() 51 notes_.insert(std::make_pair(AVRC_EVENT_ID_UIDS_CHANGED, true)); in AvrcCtConnectInfo() 52 notes_.insert(std::make_pair(AVRC_EVENT_ID_VOLUME_CHANGED, true)); in AvrcCtConnectInfo() 275 auto iter = info->notes_.find(notification); in EnableNotifyState() 276 if (iter != info->notes_.end()) { in EnableNotifyState() 292 auto iter = info->notes_.find(notification); in DisableNotifyState() 293 if (iter != info->notes_.end()) { in DisableNotifyState() 311 auto iter = info->notes_.find(notification); in IsNotifyStateEnabled() 312 if (iter != info->notes_.end()) { in IsNotifyStateEnabled() [all …]
|
H A D | avrcp_ct_connection.h | 70 std::map<uint8_t, bool> notes_ {}; // The notifications are enabled or not.
|
/ohos5.0/base/telephony/core_service/utils/vcard/src/ |
H A D | vcard_contact.cpp | 157 BuildValuesBuckets(rawId, contactDataValues, notes_); in BuildContactData() 262 BuildData(resultSet, notes_); in BuildOtherData() 351 return notes_; in GetNotes() 689 notes_.push_back(object); in AddNote()
|
/ohos5.0/base/telephony/core_service/utils/vcard/include/ |
H A D | vcard_contact.h | 170 std::vector<std::shared_ptr<VCardNoteData>> notes_; variable
|
/ohos5.0/base/telephony/core_service/test/unittest/core_service_gtest/ |
H A D | vcard_test.cpp | 1118 contact->notes_.push_back(data1); 1119 contact->notes_.push_back(data2);
|