Lines Matching full:runtime
18 #include "runtime/include/runtime.h"
19 #include "runtime/include/runtime_options.h"
20 #include "runtime/include/runtime_notification.h"
21 #include "runtime/core/core_vm.h"
22 #include "runtime/include/panda_vm.h"
23 #include "runtime/mem/gc/reference-processor/reference_processor.h"
28 PandaVM *PandaVM::Create(Runtime *runtime, const RuntimeOptions &options, std::string_view runtime_… in Create() argument
30 …PandaVM *panda_vm = runtime->GetLanguageContext(std::string(runtime_type)).CreateVM(runtime, optio… in Create()
43 Expected<int, Runtime::Error> PandaVM::InvokeEntrypoint(Method *entrypoint, const std::vector<std::… in InvokeEntrypoint()
46 LOG(ERROR, RUNTIME) << "Method '" << entrypoint << "' has invalid signature"; in InvokeEntrypoint()
47 return Unexpected(Runtime::Error::INVALID_ENTRY_POINT); in InvokeEntrypoint()
49 Expected<int, Runtime::Error> ret = InvokeEntrypointImpl(entrypoint, args); in InvokeEntrypoint()