Lines Matching refs:Result

351       [HandleResult, Ctx](Expected<SymbolMap> Result) {
352 if (Result) {
354 for (auto &KV : *Result)
360 HandleResult(wrap(Result.takeError()), nullptr, 0, Ctx);
478 LLVMOrcCSymbolFlagsMapPairs Result = static_cast<LLVMOrcCSymbolFlagsMapPairs>(
484 Result[I] = {Name, fromJITSymbolFlags(Flags)};
488 return Result;
507 LLVMOrcSymbolStringPoolEntryRef *Result =
512 Result[I] = wrap(SymbolStringPoolEntryUnsafe::from(Name));
516 return Result;
556 LLVMOrcMaterializationResponsibilityRef *Result) {
566 *Result = wrap(OtherMR->release());
610 LLVMOrcJITDylibRef *Result,
615 *Result = wrap(&*JD);
660 LLVMOrcDefinitionGeneratorRef *Result, char GlobalPrefix,
662 assert(Result && "Result can not be null");
676 *Result = nullptr;
680 *Result = wrap(ProcessSymsGenerator->release());
685 LLVMOrcDefinitionGeneratorRef *Result, const char *FileName,
687 assert(Result && "Result can not be null");
702 *Result = nullptr;
706 *Result = wrap(LibrarySymsGenerator->release());
711 LLVMOrcDefinitionGeneratorRef *Result, LLVMOrcObjectLayerRef ObjLayer,
713 assert(Result && "Result can not be null");
720 *Result = nullptr;
723 *Result = wrap(LibrarySymsGenerator->release());
760 LLVMOrcJITTargetMachineBuilderRef *Result) {
761 assert(Result && "Result can not be null");
765 Result = nullptr;
769 *Result = wrap(new JITTargetMachineBuilder(std::move(*JTMB)));
852 ThreadSafeModule Result = std::move(*unwrap(TSMRef));
854 return std::move(Result);
887 if (auto Result = (*unwrap(DumpObjects))(std::move(OB))) {
888 *ObjBuffer = wrap(Result->release());
892 return wrap(Result.takeError());
921 LLVMErrorRef LLVMOrcCreateLLJIT(LLVMOrcLLJITRef *Result,
923 assert(Result && "Result can not be null");
932 Result = nullptr;
936 *Result = wrap(J->release());
997 LLVMOrcJITTargetAddress *Result,
999 assert(Result && "Result can not be null");
1003 *Result = 0;
1007 *Result = Sym->getValue();
1103 bool Result = CBs.FinalizeMemory(Opaque, &ErrMsgCString);
1104 assert((Result || !ErrMsgCString) &&
1111 return Result;
1168 LLVMOrcLazyCallThroughManagerRef *Result) {
1174 *Result = wrap(LCTM->release());