Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_distributed/include/devices_info_interact/
H A Ddevices_info_interact.h24 class DevicesInfoInteract final : public DistributedKv::KvStoreSyncCallback,
25 public std::enable_shared_from_this<DevicesInfoInteract> {
27 DevicesInfoInteract();
28 virtual ~DevicesInfoInteract();
29 DevicesInfoInteract(const DevicesInfoInteract&) = delete;
30 DevicesInfoInteract& operator=(const DevicesInfoInteract&) = delete;
31 DevicesInfoInteract(const DevicesInfoInteract&&) = delete;
32 DevicesInfoInteract& operator=(const DevicesInfoInteract&&) = delete;
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_distributed/src/devices_info_interact/
H A Ddevices_info_interact.cpp29 DevicesInfoInteract::DevicesInfoInteract() : bundleName_(BUNDLE_NAME) in DevicesInfoInteract() function in OHOS::Media::DevicesInfoInteract
34 DevicesInfoInteract::~DevicesInfoInteract() in ~DevicesInfoInteract()
45 void DevicesInfoInteract::Init() in Init()
73 std::string DevicesInfoInteract::GenerateKey(const std::string &udid) in GenerateKey()
78 void DevicesInfoInteract::SyncMLDeviceInfos(const std::string &udid, const std::string &networkId) in SyncMLDeviceInfos()
94 bool DevicesInfoInteract::GetMLDeviceInfos(const std::string &udid, std::string &val) in GetMLDeviceInfos()
124 void DevicesInfoInteract::PutMLDeviceInfos(const std::string &udid) in PutMLDeviceInfos()
146 void DevicesInfoInteract::SyncCompleted(const std::map<std::string, DistributedKv::Status> &results) in SyncCompleted()
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_distributed/include/device_manage/
H A Dmedialibrary_device.h98 std::shared_ptr<DevicesInfoInteract> devsInfoInter_;
/ohos5.0/foundation/multimedia/media_library/frameworks/services/media_distributed/src/device_manage/
H A Dmedialibrary_device.cpp52 devsInfoInter_ = make_shared<DevicesInfoInteract>(); in Start()