Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCGenericMemoryAccess.h43 WriteResultFn OnWriteComplete) override { in writeUInt8sAsync() argument
46 FAs.WriteUInt8s, std::move(OnWriteComplete), Ws); in writeUInt8sAsync()
50 WriteResultFn OnWriteComplete) override { in writeUInt16sAsync() argument
53 FAs.WriteUInt16s, std::move(OnWriteComplete), Ws); in writeUInt16sAsync()
57 WriteResultFn OnWriteComplete) override { in writeUInt32sAsync() argument
60 FAs.WriteUInt32s, std::move(OnWriteComplete), Ws); in writeUInt32sAsync()
64 WriteResultFn OnWriteComplete) override { in writeUInt64sAsync() argument
67 FAs.WriteUInt64s, std::move(OnWriteComplete), Ws); in writeUInt64sAsync()
71 WriteResultFn OnWriteComplete) override { in writeBuffersAsync() argument
74 FAs.WriteBuffers, std::move(OnWriteComplete), Ws); in writeBuffersAsync()
H A DExecutorProcessControl.h109 WriteResultFn OnWriteComplete) = 0;
112 WriteResultFn OnWriteComplete) = 0;
115 WriteResultFn OnWriteComplete) = 0;
118 WriteResultFn OnWriteComplete) = 0;
121 WriteResultFn OnWriteComplete) = 0;
445 WriteResultFn OnWriteComplete) override;
448 WriteResultFn OnWriteComplete) override;
451 WriteResultFn OnWriteComplete) override;
454 WriteResultFn OnWriteComplete) override;
457 WriteResultFn OnWriteComplete) override;
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DExecutorProcessControl.cpp139 ArrayRef<tpctypes::UInt8Write> Ws, WriteResultFn OnWriteComplete) { in writeUInt8sAsync() argument
142 OnWriteComplete(Error::success()); in writeUInt8sAsync()
146 ArrayRef<tpctypes::UInt16Write> Ws, WriteResultFn OnWriteComplete) { in writeUInt16sAsync() argument
149 OnWriteComplete(Error::success()); in writeUInt16sAsync()
153 ArrayRef<tpctypes::UInt32Write> Ws, WriteResultFn OnWriteComplete) { in writeUInt32sAsync() argument
156 OnWriteComplete(Error::success()); in writeUInt32sAsync()
160 ArrayRef<tpctypes::UInt64Write> Ws, WriteResultFn OnWriteComplete) { in writeUInt64sAsync() argument
163 OnWriteComplete(Error::success()); in writeUInt64sAsync()
167 ArrayRef<tpctypes::BufferWrite> Ws, WriteResultFn OnWriteComplete) { in writeBuffersAsync() argument
170 OnWriteComplete(Error::success()); in writeBuffersAsync()