Home
last modified time | relevance | path

Searched refs:assetPath (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Djs_pandafile_executor.cpp51 CString assetPath = vm->GetAssetPath(); in ExecuteFromFile()
52 name = assetPath + "\\" + JSPandaFile::MERGE_ABC_NAME; in ExecuteFromFile()
54 CString assetPath = vm->GetAssetPath(); in ExecuteFromFile()
55 name = assetPath + "/" + JSPandaFile::MERGE_ABC_NAME; in ExecuteFromFile()
152 CString assetPath = vm->GetAssetPath(); in ExecuteModuleBuffer() local
153 name = assetPath + "\\" + JSPandaFile::MERGE_ABC_NAME; in ExecuteModuleBuffer()
155 CString assetPath = vm->GetAssetPath(); in ExecuteModuleBuffer() local
156 name = assetPath + "/" + JSPandaFile::MERGE_ABC_NAME; in ExecuteModuleBuffer()
309 CString assetPath = vm->GetAssetPath(); in ExecuteModuleBufferSecure() local
310 name = assetPath + "\\" + JSPandaFile::MERGE_ABC_NAME; in ExecuteModuleBufferSecure()
[all …]
/arkcompiler/ets_runtime/ecmascript/
Decma_vm.h326 void SetAssetPath(const CString &assetPath) in SetAssetPath() argument
328 assetPath_ = assetPath; in SetAssetPath()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h1393 static void SetAssetPath(EcmaVM *vm, const std::string &assetPath);
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3558 void JSNApi::SetAssetPath(EcmaVM *vm, const std::string &assetPath) in SetAssetPath() argument
3560 ecmascript::CString path = assetPath.c_str(); in SetAssetPath()