Home
last modified time | relevance | path

Searched refs:jsPagePath_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/router/
H A Djs_page_state_machine.cpp42 jsPagePath_ = nullptr; in StateMachine()
73 if (jsPagePath_ != nullptr) { in ~StateMachine()
74 ace_free(jsPagePath_); in ~StateMachine()
75 jsPagePath_ = nullptr; in ~StateMachine()
116 jsPagePath_ = static_cast<char *>(ace_malloc(len)); in GenerateJsPagePath()
117 if (jsPagePath_ == nullptr) { in GenerateJsPagePath()
121 jsPagePath_[0] = '\0'; in GenerateJsPagePath()
130 err = strcpy_s(jsPagePath_, len, uri); in GenerateJsPagePath()
132 JS_PAGE_RETURN_IF_ERROR(err, jsPagePath_); in GenerateJsPagePath()
134 JS_PAGE_RETURN_IF_ERROR(err, jsPagePath_); in GenerateJsPagePath()
[all …]
H A Djs_page_state_machine.h97 char *jsPagePath_; variable