Home
last modified time | relevance | path

Searched refs:fullPathInfo (Results 1 - 5 of 5) sorted by relevance

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ng/
H A Dpage_router_manager.h203 void RestoreFullPathInfo(std::unique_ptr<JsonValue> fullPathInfo);
H A Dpage_router_manager.cpp1054 void PageRouterManager::RestoreFullPathInfo(std::unique_ptr<JsonValue> fullPathInfo) in RestoreFullPathInfo() argument
1057 restoreFullPathInfo_(std::move(fullPathInfo)); in RestoreFullPathInfo()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_declarative_engine.cpp1858 jsonItem->Put("fullPathInfo", recordIter->second.c_str()); in GetFullPathInfo()
1865 void JsiDeclarativeEngine::RestoreFullPathInfo(std::unique_ptr<JsonValue> fullPathInfo) in RestoreFullPathInfo() argument
1868 if (!fullPathInfo || !fullPathInfo->IsValid() || !fullPathInfo->IsArray()) { in RestoreFullPathInfo()
1869 LOGW("Invalid fullPathInfo"); in RestoreFullPathInfo()
1874 int32_t size = fullPathInfo->GetArraySize(); in RestoreFullPathInfo()
1876 auto item = fullPathInfo->GetArrayItem(i); in RestoreFullPathInfo()
1878 LOGW("failed to get fullPathInfo item"); in RestoreFullPathInfo()
1882 auto fullPathInfoJsonValue = item->GetValue("fullPathInfo"); in RestoreFullPathInfo()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/
H A Dfrontend_delegate_declarative.cpp3313 auto fullPathInfo = jsonContentInfo->GetValue("fullPathInfo"); in RestoreRouterStack() local
3314 if (fullPathInfo && fullPathInfo->IsValid()) { in RestoreRouterStack()
3315 if (!fullPathInfo->IsArray()) { in RestoreRouterStack()
3319 pageRouterManager_->RestoreFullPathInfo(std::move(fullPathInfo)); in RestoreRouterStack()
3350 auto fullPathInfo = pageRouterManager_->GetFullPathInfo(); in GetContentInfo() local
3351 if (fullPathInfo) { in GetContentInfo()
3352 jsonContentInfo->Put("fullPathInfo", std::move(fullPathInfo)); in GetContentInfo()
[all...]
H A Ddeclarative_frontend.cpp562 [weakEngine = WeakPtr<Framework::JsEngine>(jsEngine_)](std::unique_ptr<JsonValue> fullPathInfo) { in Initialize()
567 return jsEngine->RestoreFullPathInfo(std::move(fullPathInfo)); in Initialize()

Completed in 20 milliseconds