Home
last modified time | relevance | path

Searched refs:newDhIds (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_audio/services/audiohdiproxy/src/
H A Ddaudio_hdi_handler.cpp120 std::set<int32_t> newDhIds; in RegisterAudioDevice() local
121 newDhIds.insert(dhId); in RegisterAudioDevice()
122 mapAudioMgrDhIds_.emplace(devId, newDhIds); in RegisterAudioDevice()
/ohos5.0/foundation/distributedhardware/distributed_input/services/source/sourcemanager/test/sourcemanagerunittest/
H A Ddistributed_input_sourcemanager_test.cpp1013 std::vector<std::string> newDhIds; variable
1015 bool ret = sourceManager_->IsStringDataSame(oldDhIds, newDhIds);
1022 std::vector<std::string> newDhIds; variable
1024 newDhIds.push_back("rt12r1nr81n521be8rb1erbe1w8bg1erb18");
1025 bool ret = sourceManager_->IsStringDataSame(oldDhIds, newDhIds);
1028 newDhIds.push_back("afv4s8b1dr1b8er1bd65fb16redb1dfb18d1b56df1b68d");
1029 ret = sourceManager_->IsStringDataSame(oldDhIds, newDhIds);
/ohos5.0/foundation/distributedhardware/distributed_input/services/source/sourcemanager/src/
H A Ddistributed_input_source_manager.cpp829 std::vector<std::string> newDhIds) in IsStringDataSame() argument
831 if (oldDhIds.size() != newDhIds.size()) { in IsStringDataSame()
837 auto it = find(newDhIds.begin(), newDhIds.end(), oDhid); in IsStringDataSame()
838 if (it == newDhIds.end()) { in IsStringDataSame()
/ohos5.0/foundation/distributedhardware/distributed_input/services/source/sourcemanager/include/
H A Ddistributed_input_source_manager.h482 …bool IsStringDataSame(const std::vector<std::string> &oldDhIds, std::vector<std::string> newDhIds);