Home
last modified time | relevance | path

Searched refs:preStartSessionMap_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/test/unittest/ability_manager_service_third_test/
H A Dability_manager_service_third_test.cpp1579 (abilityMs->preStartSessionMap_).insert(std::make_pair(sessionId, sessionInfo));
1581 …EXPECT_EQ((abilityMs->preStartSessionMap_).find(sessionId), (abilityMs->preStartSessionMap_).end()…
/ohos5.0/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dability_manager_service.cpp2100 preStartSessionMap_[sessionId] = sessionInfo; in StartUIAbilityBySCB()
3923 auto it = preStartSessionMap_.find(sessionId); in SetMinimizedDuringFreeInstall()
3924 if (it == preStartSessionMap_.end()) { in SetMinimizedDuringFreeInstall()
12147 auto it = preStartSessionMap_.find(sessionId); in StartUIAbilityByPreInstall()
12148 if (it == preStartSessionMap_.end()) { in StartUIAbilityByPreInstall()
12305 auto it = preStartSessionMap_.find(sessionId); in NotifySCBToHandleAtomicServiceException()
12306 if (it == preStartSessionMap_.end()) { in NotifySCBToHandleAtomicServiceException()
12312 preStartSessionMap_.erase(it); in NotifySCBToHandleAtomicServiceException()
12326 preStartSessionMap_.erase(sessionId); in RemovePreStartSession()
/ohos5.0/foundation/ability/ability_runtime/services/abilitymgr/include/
H A Dability_manager_service.h2358 std::map<std::string, sptr<SessionInfo>> preStartSessionMap_; variable