Lines Matching refs:ES
39 ExecutionSession ES(cantFail(SelfExecutorProcessControl::Create())); in TEST() local
42 EXPECT_THAT_ERROR(ES.callSPSWrapper<int32_t(int32_t, int32_t)>( in TEST()
46 cantFail(ES.endSession()); in TEST()
50 ExecutionSession ES(cantFail(SelfExecutorProcessControl::Create())); in TEST() local
53 ES.callSPSWrapperAsync<void()>(ExecutorAddr::fromPtr(voidWrapper), in TEST()
59 cantFail(ES.endSession()); in TEST()
63 ExecutionSession ES(cantFail(SelfExecutorProcessControl::Create())); in TEST() local
66 ES.callSPSWrapperAsync<int32_t(int32_t, int32_t)>( in TEST()
76 cantFail(ES.endSession()); in TEST()
83 ExecutionSession ES(cantFail(SelfExecutorProcessControl::Create())); in TEST() local
84 auto &JD = ES.createBareJITDylib("JD"); in TEST()
86 auto AddAsyncTag = ES.intern("addAsync_tag"); in TEST()
94 ES.wrapAsyncWithSPS<int32_t(int32_t, int32_t)>(addAsyncWrapper); in TEST()
96 cantFail(ES.registerJITDispatchHandlers(JD, std::move(Associations))); in TEST()
107 ES.runJITDispatchHandler( in TEST()
118 cantFail(ES.endSession()); in TEST()