Home
last modified time | relevance | path

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

/ark/js_runtime/ecmascript/
Decma_vm.cpp319 bool EcmaVM::ExecuteFromPf(const std::string &filename, std::string_view entryPoint, in ExecuteFromPf() argument
331 return Execute(jsPandaFile, entryPoint, args); in ExecuteFromPf()
334 bool EcmaVM::CollectInfoOfPandaFile(const std::string &filename, std::string_view entryPoint, in CollectInfoOfPandaFile() argument
348 size_t pos = entryPoint.find_last_of("::"); in CollectInfoOfPandaFile()
350 LOG_ECMA(ERROR) << "EntryPoint:" << entryPoint << " is illegal"; in CollectInfoOfPandaFile()
353 CString methodName(entryPoint.substr(pos + 1)); in CollectInfoOfPandaFile()
360 bool EcmaVM::ExecuteFromBuffer(const void *buffer, size_t size, std::string_view entryPoint, in ExecuteFromBuffer() argument
364 size_t pos = entryPoint.find_last_of("::"); in ExecuteFromBuffer()
366 LOG_ECMA(ERROR) << "EntryPoint:" << entryPoint << " is illegal"; in ExecuteFromBuffer()
369 CString methodName(entryPoint.substr(pos + 1)); in ExecuteFromBuffer()
[all …]
Decma_vm.h112 bool ExecuteFromPf(const std::string &filename, std::string_view entryPoint,
115 bool ExecuteFromBuffer(const void *buffer, size_t size, std::string_view entryPoint,
118 bool PUBLIC_API CollectInfoOfPandaFile(const std::string &filename, std::string_view entryPoint,
347 void ExecuteModule(const std::string &moduleFile, std::string_view entryPoint,
467 …bool Execute(const JSPandaFile *jsPandaFile, std::string_view entryPoint, const std::vector<std::s…
/ark/js_runtime/ecmascript/tooling/test/
Ddebugger_entry_test.cpp61 auto [pandaFile, entryPoint] = GetTestEntryPoint(testName); in HWTEST_P_L0()
62 auto res = JSNApi::Execute(ecmaVm, pandaFile.c_str(), entryPoint.c_str()); in HWTEST_P_L0()