Lines Matching refs:uuid
84 … DistributedHardwareManager::SendOnLineEvent(const std::string &networkId, const std::string &uuid, in SendOnLineEvent() argument
93 if (uuid.empty()) { in SendOnLineEvent()
98 …DHLOGI("networkId = %s, uuid = %s", GetAnonyString(networkId).c_str(), GetAnonyString(uuid).c_str(… in SendOnLineEvent()
100 if (DHContext::GetInstance().IsDeviceOnline(uuid)) { in SendOnLineEvent()
101 DHLOGW("device is already online, uuid = %s", GetAnonyString(uuid).c_str()); in SendOnLineEvent()
105 …auto task = TaskFactory::GetInstance().CreateTask(TaskType::ON_LINE, networkId, uuid, "", nullptr); in SendOnLineEvent()
107 DHContext::GetInstance().AddOnlineDevice(uuid, networkId); in SendOnLineEvent()
108 CapabilityInfoManager::GetInstance()->CreateManualSyncCount(GetDeviceIdByUUID(uuid)); in SendOnLineEvent()
113 …DistributedHardwareManager::SendOffLineEvent(const std::string &networkId, const std::string &uuid, in SendOffLineEvent() argument
126 if (uuid.empty() && cacheUUID.empty()) { in SendOffLineEvent()
131 std::string realUUID = uuid.empty() ? cacheUUID : uuid; in SendOffLineEvent()