Home
last modified time | relevance | path

Searched refs:asyncOp (Results 1 – 25 of 57) sorted by relevance

123

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/platform/win10/
H A DAsyncHelpers.h25 return asyncOp.get(); in Wait()
38 return asyncOp.GetResults(); in Wait()
41 return asyncOp.get(); in Wait()
49 return asyncOp.GetResults(); in Wait()
56 return asyncOp.GetResults(); in Wait()
59 return asyncOp.get(); in Wait()
68 return asyncOp.GetResults(); in Wait()
74 if (asyncOp.is_done()) in Wait()
75 return asyncOp.get(); in Wait()
78 return asyncOp.get(); in Wait()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.WebClient/src/System/Net/
H A DWebClient.cs134 _asyncOp = asyncOp; in StartAsyncOperation()
136 return asyncOp; in StartAsyncOperation()
860 Debug.Assert(asyncOp != null); in DownloadBitsAsync()
906 PostProgressChanged(asyncOp, _progress); in DownloadBitsAsync()
992 Debug.Assert(asyncOp != null); in UploadBitsAsync()
1010 PostProgressChanged(asyncOp, _progress); in UploadBitsAsync()
1048 PostProgressChanged(asyncOp, _progress); in UploadBitsAsync()
1278 if (Interlocked.CompareExchange(ref _asyncOp, null, asyncOp) == asyncOp) in InvokeOperationCompleted()
1365 AsyncOperation asyncOp = (AsyncOperation)state; in DownloadStringAsyncCallback()
1405 AsyncOperation asyncOp = (AsyncOperation)state; in DownloadDataAsyncCallback()
[all …]
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/Framework/src/winrt/
H A DStorageFileStream.cpp13 ResultType WaitForSyncOp(IAsyncOperation<ResultType>^ asyncOp)
16 Concurrency::task<ResultType>(asyncOp).then(
23 return asyncOp->GetResults();
27 ResultType WaitForSyncOp(IAsyncOperationWithProgress<ResultType, ProgressType>^ asyncOp)
30 Concurrency::task<ResultType>(asyncOp).then(
37 return asyncOp->GetResults();
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A Dwebclient.cs1087 AsyncOp = asyncOp; in DownloadBitsState()
1358 AsyncOp = asyncOp; in UploadBitsState()
1857 m_AsyncOp = asyncOp; in OpenReadAsync()
1942 m_AsyncOp = asyncOp; in OpenWriteAsync()
2011 m_AsyncOp = asyncOp; in DownloadStringAsync()
2065 m_AsyncOp = asyncOp; in DownloadDataAsync()
2123 m_AsyncOp = asyncOp; in DownloadFileAsync()
2235 m_AsyncOp = asyncOp; in UploadStringAsync()
2326 m_AsyncOp = asyncOp; in UploadDataAsync()
2427 m_AsyncOp = asyncOp; in UploadFileAsync()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/Dialect/GPU/Transforms/
H A DAsyncRegionRewriter.cpp49 if (auto asyncOp = dyn_cast<gpu::AsyncOpInterface>(op)) in operator ()() local
50 return rewriteAsyncOp(asyncOp); // Replace GPU op with async version. in operator ()()
62 LogicalResult rewriteAsyncOp(gpu::AsyncOpInterface asyncOp) { in rewriteAsyncOp()
63 auto *op = asyncOp.getOperation(); in rewriteAsyncOp()
64 if (asyncOp.getAsyncToken()) in rewriteAsyncOp()
74 asyncOp.addAsyncDependency(currentToken); in rewriteAsyncOp()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/x11-toolkits/qt5-widgets/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/x11-toolkits/qt5-gui/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/devel/qt5-testlib/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/devel/qt5-dbus/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/devel/qt5-buildtools/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/devel/qt5-concurrent/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/print/qt5-printsupport/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/graphics/qt5-opengl/kde-qtbase-5.15.2p263/src/corelib/kernel/
H A Dqfunctions_winrt.h171 static inline HRESULT _await_impl(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle, … in _await_impl() argument
174 HRESULT hr = asyncOp.As(&asyncInfo); in _await_impl()
225 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, AwaitStyle awaitStyle = Yield…
227 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
231 return asyncOp->GetResults();
235 static inline HRESULT await(const Microsoft::WRL::ComPtr<T> &asyncOp, U *results, AwaitStyle awaitS…
237 HRESULT hr = _await_impl(asyncOp, awaitStyle, timeout);
241 return asyncOp->GetResults(results);
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/Dialect/GPU/Transforms/
H A DAsyncRegionRewriter.cpp61 if (auto asyncOp = dyn_cast<gpu::AsyncOpInterface>(op)) in operator ()() local
62 return rewriteAsyncOp(asyncOp); // Replace GPU op with async version. in operator ()()
73 LogicalResult rewriteAsyncOp(gpu::AsyncOpInterface asyncOp) { in rewriteAsyncOp()
74 auto *op = asyncOp.getOperation(); in rewriteAsyncOp()
75 if (asyncOp.getAsyncToken()) in rewriteAsyncOp()
87 asyncOp.addAsyncDependency(currentToken); in rewriteAsyncOp()
248 if (auto asyncOp = dyn_cast<gpu::AsyncOpInterface>(*it)) { in addAsyncDependencyAfter() local
250 asyncOp.addAsyncDependency(token); in addAsyncDependencyAfter()

123