Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/context/
H A Djs_app_context.cpp267 size_t jsPathLen = strlen(jsPath); in SetCurrentJsPath() local
268 if ((jsPathLen > 0) && (jsPathLen < PATH_LENGTH_MAX)) { in SetCurrentJsPath()
269 currentJsPath_ = static_cast<char *>(ace_malloc(jsPathLen + 1)); in SetCurrentJsPath()
274 if (memcpy_s(currentJsPath_, jsPathLen, jsPath, jsPathLen) != 0) { in SetCurrentJsPath()
279 currentJsPath_[jsPathLen] = '\0'; in SetCurrentJsPath()
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/base/
H A Djs_fwk_common.cpp499 size_t jsPathLen = strlen(jsPath); in RelocateFilePathRelative() local
500 if (jsPathLen >= PATH_LENGTH_MAX) { in RelocateFilePathRelative()
503 int len = jsPathLen - strlen(ret); in RelocateFilePathRelative()