Home
last modified time | relevance | path

Searched refs:connections_ (Results 1 - 12 of 12) sorted by relevance

/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/src/
H A Dvsync_distributor.cpp300 : controller_(controller), mutex_(), con_(), connections_(), in VSyncDistributor()
349 auto it = std::find(connections_.begin(), connections_.end(), connection); in AddConnection()
350 if (it != connections_.end()) { in AddConnection()
354 connections_.push_back(connection); in AddConnection()
375 auto it = std::find(connections_.begin(), connections_.end(), connection); in RemoveConnection()
376 if (it == connections_.end()) { in RemoveConnection()
380 connections_.erase(it); in RemoveConnection()
730 for (uint32_t i = 0; i < connections_ in CheckNeedDisableDvsync()
[all...]
/foundation/ability/form_fwk/services/src/
H A Dform_supply_callback.cpp188 while (connections_.find(connectKey) != connections_.end()) { in AddConnection()
192 connections_.emplace(connectKey, connection); in AddConnection()
206 auto conIterator = connections_.find(connectId); in RemoveConnection()
207 if (conIterator != connections_.end()) { in RemoveConnection()
209 connections_.erase(connectId); in RemoveConnection()
237 for (auto &conn : connections_) { in CanDisconnect()
269 for (const auto &conn : connections_) { in IsRemoveConnection()
293 for (const auto &conn : connections_) { in RemoveConnection()
315 for (const auto &conn : connections_) { in HandleHostDied()
[all...]
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dconnection_state_item.cpp74 bool needNotify = connections_.empty(); in AddConnection()
75 connections_.emplace(connection); in AddConnection()
86 connections_.erase(connection); in RemoveConnection()
87 return connections_.empty(); in RemoveConnection()
109 std::set<sptr<IRemoteObject>> connections_; // remote object of IAbilityConnection member in OHOS::AAFwk::ConnectedExtension
/foundation/ability/ability_runtime/frameworks/native/ability/ability_runtime/
H A Dlocal_call_container.cpp63 connections_.emplace(connect); in StartAbilityByCallInner()
65 TAG_LOGD(AAFwkTag::LOCAL_CALL, "connections_.size is %{public}zu", connections_.size()); in StartAbilityByCallInner()
115 connections_.erase(connect); in ReleaseCall()
145 connections_.erase(connect); in ClearFailedCallConnection()
/foundation/ability/ability_runtime/test/moduletest/ability_caller_fw_module_test/
H A Dability_caller_fw_module_test.cpp97 for (auto& item : context_->localCallContainer_->connections_) { in HWTEST_F()
158 for (auto& item : context_->localCallContainer_->connections_) { in HWTEST_F()
/foundation/ability/form_fwk/services/include/
H A Dform_supply_callback.h147 std::map<int32_t, sptr<FormAbilityConnection>> connections_; member in OHOS::AppExecFwk::FormSupplyCallback
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_render_service.cpp208 // if connections_ has the same token one, replace it. in CreateConnection()
209 auto it = connections_.find(tokenObj); in CreateConnection()
210 if (it != connections_.end()) { in CreateConnection()
213 connections_[tokenObj] = newConn; in CreateConnection()
222 if (connections_.count(token) == 0) { in RemoveConnection()
226 auto tmp = connections_.at(token); in RemoveConnection()
227 connections_.erase(token); in RemoveConnection()
H A Drs_render_service.h72 std::map<sptr<IRemoteObject>, sptr<RSIRenderServiceConnection>> connections_; member in OHOS::Rosen::RSRenderService
/foundation/ability/ability_runtime/interfaces/kits/native/ability/ability_runtime/
H A Dlocal_call_container.h69 std::set<sptr<CallerConnection>> connections_; member in OHOS::AbilityRuntime::LocalCallContainer
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/
H A Drs_profiler.cpp311 // if connections_ has the same token one, replace it. in CreateMockConnection()
312 if (g_renderService->connections_.count(tokenObj) > 0) { in CreateMockConnection()
313 tmp = g_renderService->connections_.at(tokenObj); in CreateMockConnection()
315 g_renderService->connections_[tokenObj] = newConn; in CreateMockConnection()
326 for (const auto& pair : g_renderService->connections_) { in GetConnection()
342 for (const auto& pair : g_renderService->connections_) { in GetConnectionPid()
359 pids.reserve(g_renderService->connections_.size()); in GetConnectionsPids()
360 for (const auto& pair : g_renderService->connections_) { in GetConnectionsPids()
/foundation/graphic/graphic_2d/rosen/modules/composer/vsync/include/
H A Dvsync_distributor.h189 std::vector<sptr<VSyncConnection> > connections_; member in OHOS::Rosen::VSyncDistributor
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_ability_ability_runtime_test/
H A Dlocal_call_container_ut_test.cpp779 localCallContainer->connections_.emplace(connect); in HWTEST_F()
780 EXPECT_NE(COUNT_ZERO, localCallContainer->connections_.size()); in HWTEST_F()
782 EXPECT_EQ(COUNT_ZERO, localCallContainer->connections_.size()); in HWTEST_F()

Completed in 11 milliseconds