Lines Matching defs:SendResult
506 void COFFPlatform::pushInitializersLoop(PushInitializersSendResultFn SendResult,
547 SendResult(DIM);
553 [this, SendResult = std::move(SendResult), &JD,
556 SendResult(std::move(Err));
558 pushInitializersLoop(std::move(SendResult), JD, JDDepMap);
563 void COFFPlatform::rt_pushInitializers(PushInitializersSendResultFn SendResult,
582 SendResult(make_error<StringError>("No JITDylib with header addr " +
590 SendResult(JDDepMap.takeError());
594 pushInitializersLoop(std::move(SendResult), JD, *JDDepMap);
597 void COFFPlatform::rt_lookupSymbol(SendSymbolAddressFn SendResult,
612 SendResult(make_error<StringError>("No JITDylib associated with handle " +
621 RtLookupNotifyComplete(SendSymbolAddressFn &&SendResult)
622 : SendResult(std::move(SendResult)) {}
626 SendResult(Result->begin()->second.getAddress());
628 SendResult(Result.takeError());
633 SendSymbolAddressFn SendResult;
639 RtLookupNotifyComplete(std::move(SendResult)), NoDependenciesToRegister);