Lines Matching defs:ES
40 ExecutionSession ES(cantFail(SelfExecutorProcessControl::Create()));
43 EXPECT_THAT_ERROR(ES.callSPSWrapper<int32_t(int32_t, int32_t)>(
47 cantFail(ES.endSession());
51 ExecutionSession ES(cantFail(SelfExecutorProcessControl::Create()));
54 ES.callSPSWrapperAsync<void()>(ExecutorAddr::fromPtr(voidWrapper),
60 cantFail(ES.endSession());
64 ExecutionSession ES(cantFail(SelfExecutorProcessControl::Create()));
67 ES.callSPSWrapperAsync<int32_t(int32_t, int32_t)>(
77 cantFail(ES.endSession());
84 ExecutionSession ES(cantFail(SelfExecutorProcessControl::Create()));
85 auto &JD = ES.createBareJITDylib("JD");
87 auto AddAsyncTag = ES.intern("addAsync_tag");
94 ES.wrapAsyncWithSPS<int32_t(int32_t, int32_t)>(addAsyncWrapper);
96 cantFail(ES.registerJITDispatchHandlers(JD, std::move(Associations)));
107 ES.runJITDispatchHandler(
118 cantFail(ES.endSession());