Home
last modified time | relevance | path

Searched refs:routerStack (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/
H A Dfrontend_delegate_declarative.cpp3275 auto routerStack = jsonContentInfo->GetValue("stackInfo"); in RestoreRouterStack() local
3278 if (!routerStack->IsValid() || !routerStack->IsArray()) { in RestoreRouterStack()
3282 int32_t stackSize = routerStack->GetArraySize(); in RestoreRouterStack()
3288 std::string url = routerStack->GetArrayItem(index)->ToString(); in RestoreRouterStack()
3292 std::string startUrl = routerStack->GetArrayItem(stackSize - 1)->ToString(); in RestoreRouterStack()
3324 return pageRouterManager_->RestoreRouterStack(std::move(routerStack), type); in RestoreRouterStack()
/ohos5.0/foundation/window/window_manager/wm/test/unittest/
H A Dwindow_impl_test.cpp1338 std::string routerStack = "stackInfo:{}"; variable
1339 EXPECT_EQ(window->SetRestoredRouterStack(routerStack), WMError::WM_OK);
1341 EXPECT_EQ(gettedStack, routerStack);
/ohos5.0/foundation/window/window_manager/wm/src/
H A Dwindow_impl.cpp655 auto routerStack = GetRestoredRouterStack(); in SetUIContentInner() local
657 if (!routerStack.empty() && in SetUIContentInner()
658 … uiContent->Restore(this, routerStack, storage, type) == Ace::UIContentErrorCode::NO_ERRORS) { in SetUIContentInner()
786 WMError WindowImpl::SetRestoredRouterStack(const std::string& routerStack) in SetRestoredRouterStack() argument
789 restoredRouterStack_ = routerStack; in SetRestoredRouterStack()
H A Dwindow_session_impl.cpp1305 auto routerStack = GetRestoredRouterStack(); in InitUIContent() local
1307 if (!routerStack.empty() && in InitUIContent()
1308 … uiContent->Restore(this, routerStack, storage, type) == Ace::UIContentErrorCode::NO_ERRORS) { in InitUIContent()
1815 WMError WindowSessionImpl::SetRestoredRouterStack(const std::string& routerStack) in SetRestoredRouterStack() argument
1818 restoredRouterStack_ = routerStack; in SetRestoredRouterStack()
/ohos5.0/foundation/window/window_manager/wm/include/
H A Dwindow_impl.h285 WMError SetRestoredRouterStack(const std::string& routerStack) override;
H A Dwindow_session_impl.h134 WMError SetRestoredRouterStack(const std::string& routerStack) override;
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow.h1483 virtual WMError SetRestoredRouterStack(const std::string& routerStack) in SetRestoredRouterStack() argument