Lines Matching defs:SendResult
498 void COFFPlatform::pushInitializersLoop(PushInitializersSendResultFn SendResult,
537 SendResult(DIM);
543 [this, SendResult = std::move(SendResult), &JD,
546 SendResult(std::move(Err));
548 pushInitializersLoop(std::move(SendResult), JD, JDDepMap);
553 void COFFPlatform::rt_pushInitializers(PushInitializersSendResultFn SendResult,
572 SendResult(make_error<StringError>("No JITDylib with header addr " +
580 SendResult(JDDepMap.takeError());
584 pushInitializersLoop(std::move(SendResult), JD, *JDDepMap);
587 void COFFPlatform::rt_lookupSymbol(SendSymbolAddressFn SendResult,
602 SendResult(make_error<StringError>("No JITDylib associated with handle " +
611 RtLookupNotifyComplete(SendSymbolAddressFn &&SendResult)
612 : SendResult(std::move(SendResult)) {}
616 SendResult(Result->begin()->second.getAddress());
618 SendResult(Result.takeError());
623 SendSymbolAddressFn SendResult;
629 RtLookupNotifyComplete(std::move(SendResult)), NoDependenciesToRegister);