Lines Matching defs:SendResult
615 PushInitializersSendResultFn SendResult, JITDylibSP JD) {
687 SendResult(DIM);
693 [this, SendResult = std::move(SendResult), JD](Error Err) mutable {
695 SendResult(std::move(Err));
697 pushInitializersLoop(std::move(SendResult), JD);
702 void MachOPlatform::rt_pushInitializers(PushInitializersSendResultFn SendResult,
721 SendResult(make_error<StringError>("No JITDylib with header addr " +
727 pushInitializersLoop(std::move(SendResult), JD);
731 PushSymbolsInSendResultFn SendResult, ExecutorAddr Handle,
754 SendResult(make_error<StringError>("No JITDylib associated with handle " +
769 [SendResult = std::move(SendResult)](Expected<SymbolMap> Result) mutable {
770 SendResult(Result.takeError());