/foundation/window/window_manager/dmserver/src/ |
H A D | display_manager_agent_controller.cpp | 47 for (auto& agent : agents) {
in NotifyDisplayPowerEvent() 48 agent->NotifyDisplayPowerEvent(event, status);
in NotifyDisplayPowerEvent() 60 for (auto& agent : agents) {
in NotifyDisplayStateChanged() 61 agent->NotifyDisplayStateChanged(id, state);
in NotifyDisplayStateChanged() 76 for (auto& agent : agents) {
in OnScreenConnect() 77 agent->OnScreenConnect(screenInfo);
in OnScreenConnect() 88 for (auto& agent : agents) {
in OnScreenDisconnect() 89 agent->OnScreenDisconnect(screenId);
in OnScreenDisconnect() 103 for (auto& agent : agents) {
in OnScreenChange() 104 agent in OnScreenChange() [all...] |
H A D | display_manager_stub.cpp | 125 auto agent = iface_cast<IDisplayManagerAgent>(data.ReadRemoteObject());
in OnRemoteRequest() local 126 if (agent == nullptr) {
in OnRemoteRequest() 127 WLOGFE("agent is nullptr");
in OnRemoteRequest() 131 DMError ret = RegisterDisplayManagerAgent(agent, type);
in OnRemoteRequest() 136 auto agent = iface_cast<IDisplayManagerAgent>(data.ReadRemoteObject());
in OnRemoteRequest() local 137 if (agent == nullptr) {
in OnRemoteRequest() 138 WLOGFE("agent is nullptr");
in OnRemoteRequest() 142 DMError ret = UnregisterDisplayManagerAgent(agent, type);
in OnRemoteRequest()
|
H A D | abstract_screen_controller.cpp | 635 new AgentDeathRecipient([this](const sptr<IRemoteObject>& agent) { OnRemoteDied(agent); });
in CreateVirtualScreen() 1269 bool AbstractScreenController::OnRemoteDied(const sptr<IRemoteObject>& agent)
in OnRemoteDied() argument 1271 if (agent == nullptr) {
in OnRemoteDied() 1275 auto agentIter = screenAgentMap_.find(agent);
in OnRemoteDied() 1277 while (screenAgentMap_[agent].size() > 0) {
in OnRemoteDied() 1278 auto diedId = screenAgentMap_[agent][0];
in OnRemoteDied() 1285 screenAgentMap_.erase(agent);
in OnRemoteDied()
|
/foundation/window/window_manager/window_scene/session_manager/src/ |
H A D | session_manager_agent_controller.cpp | 83 for (auto& agent : smAgentContainer_.GetAgentsByType( in UpdateCameraFloatWindowStatus() 85 if (agent != nullptr) { in UpdateCameraFloatWindowStatus() 86 agent->UpdateCameraFloatWindowStatus(accessTokenId, isShowing); in UpdateCameraFloatWindowStatus() 93 for (auto& agent : smAgentContainer_.GetAgentsByType( in UpdateFocusChangeInfo() 95 if (agent != nullptr) { in UpdateFocusChangeInfo() 96 agent->UpdateFocusChangeInfo(focusChangeInfo, isFocused); in UpdateFocusChangeInfo() 105 for (auto& agent : smAgentContainer_.GetAgentsByType( in UpdateWindowModeTypeInfo() 107 if (agent != nullptr) { in UpdateWindowModeTypeInfo() 108 agent->UpdateWindowModeTypeInfo(type); in UpdateWindowModeTypeInfo() 116 for (auto& agent in NotifyAccessibilityWindowInfo() [all...] |
/foundation/window/window_manager/wmserver/src/ |
H A D | window_manager_agent_controller.cpp | 41 for (auto& agent : wmAgentContainer_.GetAgentsByType(WindowManagerAgentType::WINDOW_MANAGER_AGENT_TYPE_FOCUS)) {
in UpdateFocusChangeInfo() 42 agent->UpdateFocusChangeInfo(focusChangeInfo, focused);
in UpdateFocusChangeInfo() 48 for (auto& agent : wmAgentContainer_.GetAgentsByType(
in UpdateWindowModeTypeInfo() 50 agent->UpdateWindowModeTypeInfo(type);
in UpdateWindowModeTypeInfo() 60 for (auto& agent : wmAgentContainer_.GetAgentsByType(
in UpdateSystemBarRegionTints() 62 agent->UpdateSystemBarRegionTints(displayId, tints);
in UpdateSystemBarRegionTints() 70 for (auto& agent : wmAgentContainer_.GetAgentsByType(
in NotifyAccessibilityWindowInfo() 72 agent->NotifyAccessibilityWindowInfo(infos, type);
in NotifyAccessibilityWindowInfo() 80 for (auto& agent : wmAgentContainer_.GetAgentsByType(
in UpdateWindowVisibilityInfo() 82 agent in UpdateWindowVisibilityInfo() [all...] |
/foundation/window/window_manager/utils/include/ |
H A D | client_agent_container.h | 35 bool RegisterAgent(const sptr<T1>& agent, T2 type);
36 bool UnregisterAgent(const sptr<T1>& agent, T2 type);
39 int32_t GetAgentPid(const sptr<T1>& agent);
43 bool UnregisterAgentLocked(std::set<sptr<T1>>& agents, const sptr<IRemoteObject>& agent);
50 bool operator()(sptr<T1> agent)
in operator ()() 52 if (agent == nullptr) {
in operator ()() 53 WLOGFE("agent is invalid");
in operator ()() 56 return agent->AsObject() == remoteObject_;
in operator ()() 74 bool ClientAgentContainer<T1, T2>::RegisterAgent(const sptr<T1>& agent, T2 type)
in RegisterAgent() argument 77 if (agent in RegisterAgent() 90 UnregisterAgent(const sptr<T1>& agent, T2 type) UnregisterAgent() argument 119 UnregisterAgentLocked(std::set<sptr<T1>>& agents, const sptr<IRemoteObject>& agent) UnregisterAgentLocked() argument 175 GetAgentPid(const sptr<T1>& agent) GetAgentPid() argument [all...] |
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/network/softbus/ |
H A D | softbus_agent_test.cpp | 110 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); in HWTEST_F() local 111 EXPECT_EQ(agent->sessionName_, "DistributedFileService/mnt/hmdfs/100/account"); in HWTEST_F() 131 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); in HWTEST_F() local 132 bool flag = agent->IsSameAccount(NETWORKID_ONE); in HWTEST_F() 134 flag = agent->IsSameAccount(NETWORKID_TWO); in HWTEST_F() 136 flag = agent->IsSameAccount(NETWORKID_THREE); in HWTEST_F() 139 flag = agent->IsSameAccount(NETWORKID_ONE); in HWTEST_F() 157 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); in HWTEST_F() local 160 agent->QuitDomain(); in HWTEST_F() 181 std::shared_ptr<SoftbusAgent> agent in HWTEST_F() local 209 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 244 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 270 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 294 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 318 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 344 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 371 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 398 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 423 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 447 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 478 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 509 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 536 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 560 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 591 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local 614 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); HWTEST_F() local [all...] |
H A D | softbus_session_dispatcher_test.cpp | 62 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); in HWTEST_F() local 63 weak_ptr<SoftbusAgent> wsba(agent); in HWTEST_F() 93 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); in HWTEST_F() local 94 weak_ptr<SoftbusAgent> wsba(agent); in HWTEST_F() 122 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); in HWTEST_F() local 123 weak_ptr<SoftbusAgent> wsba(agent); in HWTEST_F() 213 std::shared_ptr<SoftbusAgent> agent = std::make_shared<SoftbusAgent>(wmp); in HWTEST_F() local 214 weak_ptr<SoftbusAgent> wsba(agent); in HWTEST_F()
|
/foundation/window/window_manager/test/fuzztest/wms/windowagent_fuzzer/ |
H A D | window_agent_fuzzer.cpp | 46 void CheckWindowAgentFunctionsPart1(sptr<WindowAgent> agent, const uint8_t* data, size_t size) in CheckWindowAgentFunctionsPart1() argument 48 if (agent == nullptr || data == nullptr || size < DATA_MIN_SIZE) { in CheckWindowAgentFunctionsPart1() 58 agent->UpdateWindowRect(rect, boolVal, reason); in CheckWindowAgentFunctionsPart1() 62 agent->UpdateWindowMode(mode); in CheckWindowAgentFunctionsPart1() 66 agent->UpdateWindowModeSupportInfo(modeSupportInfo); in CheckWindowAgentFunctionsPart1() 67 agent->UpdateFocusStatus(boolVal); in CheckWindowAgentFunctionsPart1() 68 agent->NotifyForegroundInteractiveStatus(boolVal); in CheckWindowAgentFunctionsPart1() 81 agent->UpdateAvoidArea(avoidArea, type); in CheckWindowAgentFunctionsPart1() 85 agent->UpdateWindowState(state); in CheckWindowAgentFunctionsPart1() 88 void CheckWindowAgentFunctionsPart2(sptr<WindowAgent> agent, cons argument [all...] |
/foundation/ability/ability_runtime/interfaces/inner_api/wantagent/src/ |
H A D | want_agent_helper.cpp | 177 std::shared_ptr<WantAgent> agent = std::make_shared<WantAgent>(std::make_shared<PendingWant>(target)); in GetWantAgent() local 179 return agent; in GetWantAgent() 182 WantAgentConstant::OperationType WantAgentHelper::GetType(std::shared_ptr<WantAgent> agent) in GetType() argument 184 if ((agent == nullptr) || (agent->GetPendingWant() == nullptr)) { in GetType() 188 return agent->GetPendingWant()->GetType(agent->GetPendingWant()->GetTarget()); in GetType() 191 ErrCode WantAgentHelper::TriggerWantAgent(std::shared_ptr<WantAgent> agent, in TriggerWantAgent() argument 195 if (agent == nullptr) { in TriggerWantAgent() 199 std::shared_ptr<PendingWant> pendingWant = agent in TriggerWantAgent() 226 Cancel(const std::shared_ptr<WantAgent> agent) Cancel() argument 242 IsEquals( const std::shared_ptr<WantAgent> &agent, const std::shared_ptr<WantAgent> &otherAgent) IsEquals() argument 255 GetBundleName(const std::shared_ptr<WantAgent> &agent, std::string &bundleName) GetBundleName() argument 272 GetUid(const std::shared_ptr<WantAgent> &agent, int32_t &uid) GetUid() argument 288 GetWant(const std::shared_ptr<WantAgent> &agent) GetWant() argument 305 RegisterCancelListener( const std::shared_ptr<CancelListener> &cancelListener, const std::shared_ptr<WantAgent> &agent) RegisterCancelListener() argument 322 UnregisterCancelListener( const std::shared_ptr<CancelListener> &cancelListener, const std::shared_ptr<WantAgent> &agent) UnregisterCancelListener() argument 339 ToString(const std::shared_ptr<WantAgent> &agent) ToString() argument 457 GetType(const std::shared_ptr<WantAgent> &agent, int32_t &operType) GetType() argument 467 GetWant(const std::shared_ptr<WantAgent> &agent, std::shared_ptr<AAFwk::Want> &want) GetWant() argument [all...] |
H A D | want_agent.cpp | 47 WantAgent *agent = new (std::nothrow) WantAgent(); in Unmarshalling() local 48 if (agent == nullptr) { in Unmarshalling() 53 agent->SetPendingWant(pendingWant); in Unmarshalling() 55 return agent; in Unmarshalling()
|
/foundation/ability/ability_runtime/interfaces/inner_api/wantagent/include/ |
H A D | want_agent_helper.h | 79 * @param agent Indicates the WantAgent to trigger. 82 static WantAgentConstant::OperationType GetType(std::shared_ptr<WantAgent> agent); 83 static ErrCode GetType(const std::shared_ptr<WantAgent> &agent, int32_t &operType); 92 * @param agent Indicates the WantAgent to trigger. 100 static ErrCode TriggerWantAgent(std::shared_ptr<WantAgent> agent, 109 * @param agent Indicates the WantAgent to cancel. 111 static ErrCode Cancel(const std::shared_ptr<WantAgent> agent); 116 * @param agent Indicates one of the WantAgent object to compare. 120 static ErrCode IsEquals(const std::shared_ptr<WantAgent> &agent, const std::shared_ptr<WantAgent> &otherAgent); 123 * @brief Get bundle name by want agent [all...] |
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/network/softbus/ |
H A D | softbus_session_dispatcher.cpp | 42 auto agent = busNameToAgent_.find(busName); in RegisterSessionListener() local 43 if (agent != busNameToAgent_.end()) { in RegisterSessionListener() 56 auto agent = busNameToAgent_.find(busName); in UnregisterSessionListener() local 57 if (agent != busNameToAgent_.end()) { in UnregisterSessionListener() 73 auto agent = busNameToAgent_.find(string(peerSessionName)); in GetAgent() local 74 if (agent != busNameToAgent_.end()) { in GetAgent() 76 return agent->second; in GetAgent() 90 auto agent = GetAgent(sessionId, peerSessionName); in OnSessionOpened() local 91 if (auto spt = agent.lock()) { in OnSessionOpened() 114 auto agent in OnSessionClosed() local [all...] |
/foundation/CastEngine/castengine_wifi_display/services/context/ |
H A D | context.cpp | 17 #include "agent/sinkagent/sink_agent.h" 18 #include "agent/srcagent/src_agent.h" 94 SHARING_LOGI("contextId: %{public}u, destroy agent agentId: %{public}u.", GetId(), eventMsg->agentId); in HandleAgentDestroy() 96 auto agent = GetAgentById(eventMsg->agentId); in HandleAgentDestroy() local 97 if (agent == nullptr) { in HandleAgentDestroy() 98 SHARING_LOGE("agent null agentId: %{public}d.", eventMsg->agentId); in HandleAgentDestroy() 102 if (agent->GetAgentType() == SRC_AGENT) { in HandleAgentDestroy() 104 agent->HandleEvent(event); in HandleAgentDestroy() 106 agent->SetDestroy(); in HandleAgentDestroy() 109 agent in HandleAgentDestroy() 129 auto agent = GetAgentById(eventMsg->agentId); DistributeEvent() local 245 std::shared_ptr<Agent> agent = nullptr; HandleCreateAgent() local 332 auto agent = GetAgentById(eventMsg->agentId); HandleStateDestroyAgent() local 355 auto agent = GetAgentById(sinkAgentId); CheckNeedDestroySink() local [all...] |
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/ |
H A D | screen_session_manager_lite_stub.cpp | 84 auto agent = iface_cast<IDisplayManagerAgent>(data.ReadRemoteObject()); in HandleRegisterDisplayManagerAgent() local 85 if (agent == nullptr) { in HandleRegisterDisplayManagerAgent() 89 DMError ret = RegisterDisplayManagerAgent(agent, type); in HandleRegisterDisplayManagerAgent() 97 auto agent = iface_cast<IDisplayManagerAgent>(data.ReadRemoteObject()); in HandleUnRegisterDisplayManagerAgent() local 98 if (agent == nullptr) { in HandleUnRegisterDisplayManagerAgent() 102 DMError ret = UnregisterDisplayManagerAgent(agent, type); in HandleUnRegisterDisplayManagerAgent()
|
H A D | screen_session_manager_stub.cpp | 49 auto agent = iface_cast<IDisplayManagerAgent>(data.ReadRemoteObject()); in OnRemoteRequest() local 50 if (agent == nullptr) { in OnRemoteRequest() 54 DMError ret = RegisterDisplayManagerAgent(agent, type); in OnRemoteRequest() 59 auto agent = iface_cast<IDisplayManagerAgent>(data.ReadRemoteObject()); in OnRemoteRequest() local 60 if (agent == nullptr) { in OnRemoteRequest() 64 DMError ret = UnregisterDisplayManagerAgent(agent, type); in OnRemoteRequest()
|
/foundation/multimedia/player_framework/services/engine/histreamer/player/ |
H A D | dragging_player_agent.cpp | 73 shared_ptr<DraggingPlayerAgent> agent = make_shared<DraggingPlayerAgent>(); in Create() local 74 if (!agent->LoadSymbol()) { in Create() 77 agent->draggingPlayer_ = agent->createFunc_(); in Create() 78 if (agent->draggingPlayer_ == nullptr) { in Create() 83 return agent; in Create()
|
H A D | seek_agent.cpp | 39 if (auto agent = seekAgent_.lock()) {
in OnBufferFilled() 40 agent->OnAudioBufferFilled(buffer, producer_, trackId_);
in OnBufferFilled() 42 MEDIA_LOG_E("Invalid agent instance.");
in OnBufferFilled() 55 if (auto agent = seekAgent_.lock()) {
in OnBufferFilled() 56 agent->OnVideoBufferFilled(buffer, producer_, trackId_);
in OnBufferFilled() 58 MEDIA_LOG_E("Invalid agent instance.");
in OnBufferFilled()
|
/foundation/communication/ipc/services/dbinder/test/ |
H A D | test_dbinder.py | 40 for agent in self.agent_list: 41 if not distribute.exec_agent(agent, agent_target_name):
|
/foundation/window/window_manager/wm/src/ |
H A D | window_adapter_lite.cpp | 88 auto agent = std::find(agentSet.begin(), agentSet.end(), windowManagerAgent); in UnregisterWindowManagerAgent() local 89 if (agent == agentSet.end()) { in UnregisterWindowManagerAgent() 90 TLOGW(WmsLogTag::WMS_MULTI_USER, "Cannot find agent, type=%{public}d", type); in UnregisterWindowManagerAgent() 93 agentSet.erase(agent); in UnregisterWindowManagerAgent() 105 TLOGI(WmsLogTag::WMS_MULTI_USER, "Window manager agent type=%{public}" PRIu32 ", size=%{public}" PRIu64, in ReregisterWindowManagerLiteAgent() 107 for (auto& agent : it.second) { in ReregisterWindowManagerLiteAgent() 108 if (wmsProxy->RegisterWindowManagerAgent(it.first, agent) != WMError::WM_OK) { in ReregisterWindowManagerLiteAgent() 109 TLOGW(WmsLogTag::WMS_MULTI_USER, "Reregister window manager agent failed"); in ReregisterWindowManagerLiteAgent()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/ |
H A D | kvdb_service_impl.cpp | 185 ZLOGW("agent already changed! old pid:%{public}d new pid:%{public}d appId:%{public}s", in Delete() 234 auto [success, agent] = syncAgents_.Find(tokenId); in OnAsyncComplete() 235 if (success && agent.notifier_ != nullptr) { in OnAsyncComplete() 236 agent.notifier_->SyncCompleted(seqNum, std::move(detail)); in OnAsyncComplete() 354 ZLOGW("agent already changed! old pid:%{public}d, new pid:%{public}d, appId:%{public}s", in UnregServiceNotifier() 467 ZLOGW("agent already changed! old pid:%{public}d, new pid:%{public}d, appId:%{public}s", in GetSyncParam() 549 syncAgents_.Compute(tokenId, [&appId, &storeId, &observer, &isCreate](auto &key, SyncAgent &agent) { in Subscribe() 550 if (agent.pid_ != IPCSkeleton::GetCallingPid()) { in Subscribe() 551 agent.ReInit(IPCSkeleton::GetCallingPid(), appId); in Subscribe() 556 agent in Subscribe() [all...] |
/foundation/window/window_manager/window_scene/screen_session_manager/src/ |
H A D | screen_session_manager.cpp | 1121 for (auto& agent : agents) { in NotifyScreenChanged() 1122 int32_t agentPid = dmAgentContainer_.GetAgentPid(agent); in NotifyScreenChanged() 1124 agent->OnScreenChange(screenInfo, event); in NotifyScreenChanged() 2523 for (auto& agent : agents) { in NotifyDisplayChanged() 2524 int32_t agentPid = dmAgentContainer_.GetAgentPid(agent); in NotifyDisplayChanged() 2526 agent->OnDisplayChange(displayInfo, event); in NotifyDisplayChanged() 2674 for (auto& agent : agents) { in NotifyDisplayPowerEvent() 2675 agent->NotifyDisplayPowerEvent(event, status); in NotifyDisplayPowerEvent() 2708 for (auto& agent : agents) { in NotifyDisplayStateChanged() 2709 agent in NotifyDisplayStateChanged() 4181 OnRemoteDied(const sptr<IRemoteObject>& agent) OnRemoteDied() argument [all...] |
/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | abstract_screen_controller_test.cpp | 788 sptr<IRemoteObject> agent = nullptr; in HWTEST_F() local 789 ASSERT_EQ(false, absController_->OnRemoteDied(agent)); in HWTEST_F() 799 sptr<IRemoteObject> agent = new IRemoteObjectMocker(); in HWTEST_F() local 800 ASSERT_EQ(true, absController_->OnRemoteDied(agent)); in HWTEST_F() 810 sptr<IRemoteObject> agent = new IRemoteObjectMocker(); in HWTEST_F() local 812 absController_->screenAgentMap_.insert(std::make_pair(agent, screens)); in HWTEST_F() 813 ASSERT_EQ(true, absController_->OnRemoteDied(agent)); in HWTEST_F() 931 sptr<IRemoteObject> agent = new IRemoteObjectMocker(); in HWTEST_F() local 933 ASSERT_EQ(true, absController_->OnRemoteDied(agent)); in HWTEST_F() 934 agent in HWTEST_F() [all...] |
/foundation/CastEngine/castengine_wifi_display/services/impl/wfd/wfd_source/ |
H A D | wfd_source_session.cpp | 496 std::shared_ptr<WfdSourceNetworkSession> agent = std::static_pointer_cast<WfdSourceNetworkSession>(sa); in HandlePlayRequest() local 497 if (agent != nullptr) { in HandlePlayRequest() 498 agent->SetKeepAliveTimer(); in HandlePlayRequest() 531 std::shared_ptr<WfdSourceNetworkSession> agent = std::static_pointer_cast<WfdSourceNetworkSession>(sa); in HandleTeardownRequest() local 532 if (agent != nullptr) { in HandleTeardownRequest() 533 agent->UnsetKeepAliveTimer(); in HandleTeardownRequest()
|
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/device/ |
H A D | device_manager_agent.cpp | 103 shared_ptr<SoftbusAgent> agent = nullptr; in JoinGroup() local 106 agent = make_shared<SoftbusAgent>(mp); in JoinGroup() 107 auto [ignored, inserted] = mpToNetworks_.insert({ smp->GetID(), agent }); in JoinGroup() 114 agent->StartActor(); in JoinGroup() 216 // based on dev's trust info, choose corresponding network agent to obtain socket in OnDeviceReady()
|