Lines Matching refs:entryPoint
44 std::string_view entryPoint, bool needUpdate)
59 jsPandaFile = GenerateJSPandafileFromBufferCache(thread, filename, entryPoint);
119 std::shared_ptr<JSPandaFile> jsPandaFile = GenerateJSPandaFile(thread, pf.release(), filename, entryPoint);
130 std::string_view entryPoint, const void *buffer, size_t size, bool needUpdate)
172 std::shared_ptr<JSPandaFile> jsPandaFile = GenerateJSPandaFile(thread, pf.release(), desc, entryPoint);
182 std::string_view entryPoint, uint8_t *buffer, size_t size, bool needUpdate)
219 std::shared_ptr<JSPandaFile> jsPandaFile = GenerateJSPandaFile(thread, pf.release(), desc, entryPoint);
232 std::string_view entryPoint)
235 return PandaFileTranslator::GenerateProgram(vm, jsPandaFile, entryPoint);
523 const CString &desc, std::string_view entryPoint)
540 CString methodName = entryPoint.data();
542 // entryPoint maybe is _GLOBAL::func_main_watch to execute func_main_watch
543 auto pos = entryPoint.find_last_of("::");
545 methodName = entryPoint.substr(pos + 1);
547 // default use func_main_0 as entryPoint
601 JSThread *thread, const CString &filename, std::string_view entryPoint)
612 thread, filename, entryPoint, reinterpret_cast<uint8_t *>(bufferInfo.buffer_), bufferInfo.size_);
615 thread, filename, entryPoint, bufferInfo.buffer_, bufferInfo.size_);