Lines Matching defs:SendResult
610 PushInitializersSendResultFn SendResult, JITDylibSP JD) {
682 SendResult(DIM);
688 [this, SendResult = std::move(SendResult), JD](Error Err) mutable {
690 SendResult(std::move(Err));
692 pushInitializersLoop(std::move(SendResult), JD);
697 void MachOPlatform::rt_pushInitializers(PushInitializersSendResultFn SendResult,
716 SendResult(make_error<StringError>("No JITDylib with header addr " +
722 pushInitializersLoop(std::move(SendResult), JD);
726 PushSymbolsInSendResultFn SendResult, ExecutorAddr Handle,
749 SendResult(make_error<StringError>("No JITDylib associated with handle " +
764 [SendResult = std::move(SendResult)](Expected<SymbolMap> Result) mutable {
765 SendResult(Result.takeError());