Home
last modified time | relevance | path

Searched refs:ResultP (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DTargetProcessControl.h58 std::promise<MSVCPError> ResultP; in writeUInt8s() local
59 auto ResultF = ResultP.get_future(); in writeUInt8s()
60 writeUInt8s(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt8s()
65 std::promise<MSVCPError> ResultP; in writeUInt16s() local
66 auto ResultF = ResultP.get_future(); in writeUInt16s()
67 writeUInt16s(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt16s()
72 std::promise<MSVCPError> ResultP; in writeUInt32s() local
73 auto ResultF = ResultP.get_future(); in writeUInt32s()
74 writeUInt32s(Ws, [&](Error Err) { ResultP.set_value(std::move(Err)); }); in writeUInt32s()
79 std::promise<MSVCPError> ResultP; in writeUInt64s() local
[all …]
/external/llvm-project/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp817 auto ResultP = std::make_shared<std::promise<ExpectedLookupResult>>(); in linkAndVerify() local
818 auto ResultF = ResultP->get_future(); in linkAndVerify()
822 ResultP->set_value(std::move(Result)); in linkAndVerify()
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/
DCore.cpp1847 std::promise<MSVCPExpected<SymbolFlagsMap>> ResultP; in lookupFlags() local
1850 [&ResultP](Expected<SymbolFlagsMap> Result) { in lookupFlags()
1851 ResultP.set_value(std::move(Result)); in lookupFlags()
1855 auto ResultF = ResultP.get_future(); in lookupFlags()