Home
last modified time | relevance | path

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

/ohos5.0/foundation/ability/ability_runtime/test/unittest/runtime_test/
H A Djs_quickfix_callback_test.cpp58 std::string baseFileName = "<baseFileName>"; variable
62 bool res = jsQuickfixCallback(baseFileName, patchFileName, &patchBuffer, patchSize);
79 std::string baseFileName = "baseFileName.abc"; variable
83 bool res = jsQuickfixCallback(baseFileName, patchFileName, &patchBuffer, patchSize);
100 std::string baseFileName = "/data/storage/el1/bundle/entry/ets/modules.abc"; variable
104 bool res = jsQuickfixCallback(baseFileName, patchFileName, &patchBuffer, patchSize);
121 std::string baseFileName = "/data/storage/el1/bundle/bundle/ets/modules.abc"; variable
125 bool res = jsQuickfixCallback(baseFileName, patchFileName, &patchBuffer, patchSize);
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/
H A Djs_quickfix_callback.cpp30 bool JsQuickfixCallback::operator()(std::string baseFileName, std::string &patchFileName, in operator ()() argument
33 TAG_LOGD(AAFwkTag::JSRUNTIME, "baseFileName: %{private}s", baseFileName.c_str()); in operator ()()
34 auto position = baseFileName.find(".abc"); in operator ()()
39 int baseFileNameLen = static_cast<int>(baseFileName.length()); in operator ()()
47 std::string moduleName = baseFileName.substr(prefixLen, moduleLen); in operator ()()
H A Djs_quickfix_callback.h32 bool operator()(std::string baseFileName,