Lines Matching defs:SendResult
323 SendInitializerSequenceFn SendResult, JITDylib &JD,
341 SendResult(std::move(FullInitSeq));
345 SendInitializerSequenceFn SendResult, JITDylib &JD) {
349 SendResult(DFSLinkOrder.takeError());
367 getInitializersBuildSequencePhase(std::move(SendResult), JD,
374 [this, SendResult = std::move(SendResult), &JD](Error Err) mutable {
376 SendResult(std::move(Err));
378 getInitializersLookupPhase(std::move(SendResult), JD);
383 void ELFNixPlatform::rt_getInitializers(SendInitializerSequenceFn SendResult,
394 SendResult(make_error<StringError>("No JITDylib named " + JDName,
399 getInitializersLookupPhase(std::move(SendResult), *JD);
403 SendDeinitializerSequenceFn SendResult, ExecutorAddr Handle) {
419 SendResult(make_error<StringError>("No JITDylib associated with handle " +
425 SendResult(ELFNixJITDylibDeinitializerSequence());
428 void ELFNixPlatform::rt_lookupSymbol(SendSymbolAddressFn SendResult,
446 SendResult(make_error<StringError>("No JITDylib associated with handle " +
455 RtLookupNotifyComplete(SendSymbolAddressFn &&SendResult)
456 : SendResult(std::move(SendResult)) {}
460 SendResult(Result->begin()->second.getAddress());
462 SendResult(Result.takeError());
467 SendSymbolAddressFn SendResult;
473 RtLookupNotifyComplete(std::move(SendResult)), NoDependenciesToRegister);