Home
last modified time | relevance | path

Searched refs:queryIdMap_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/
H A Dmeta_data.cpp555 auto iter = queryIdMap_.find(deviceId); in GetQueryLastTimestamp()
556 if (iter != queryIdMap_.end()) { in GetQueryLastTimestamp()
563 queryIdMap_[deviceId] = { hashqueryId }; in GetQueryLastTimestamp()
567 auto iter = queryIdMap_.find(deviceId); in GetQueryLastTimestamp()
570 if (errCode == E_OK && iter != queryIdMap_.end()) { in GetQueryLastTimestamp()
580 auto iter = queryIdMap_.find(deviceId); in RemoveQueryFromRecordSet()
581 if (iter != queryIdMap_.end() && iter->second.find(hashqueryId) != iter->second.end()) { in RemoveQueryFromRecordSet()
H A Dmeta_data.h260 mutable std::map<DeviceID, std::set<std::string>> queryIdMap_; variable