Home
last modified time | relevance | path

Searched refs:promise (Results 1 – 25 of 69) sorted by relevance

123

/OK3568_Linux_fs/kernel/drivers/dma/
H A Dsun4i-dma.c322 struct sun4i_dma_promise *promise = NULL; in __execute_vchan_pending() local
367 promise = list_first_entry(&contract->demands, in __execute_vchan_pending()
369 vchan->processing = promise; in __execute_vchan_pending()
372 if (promise) { in __execute_vchan_pending()
376 configure_pchan(pchan, promise); in __execute_vchan_pending()
436 struct sun4i_dma_promise *promise; in generate_ndma_promise() local
443 promise = kzalloc(sizeof(*promise), GFP_NOWAIT); in generate_ndma_promise()
444 if (!promise) in generate_ndma_promise()
447 promise->src = src; in generate_ndma_promise()
448 promise->dst = dest; in generate_ndma_promise()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/actor/
H A Dmessage.hpp45 …AskMessageImpl(std::promise<ResultType> promise_, Object& object_, MemberFn memberFn_, ArgsTuple a… in AskMessageImpl()
49 promise(std::move(promise_)) { in AskMessageImpl()
53 promise.set_value(ask(std::make_index_sequence<std::tuple_size<ArgsTuple>::value>())); in operator ()()
64 std::promise<ResultType> promise; member in mbgl::AskMessageImpl
70 …AskMessageImpl(std::promise<void> promise_, Object& object_, MemberFn memberFn_, ArgsTuple argsTup… in AskMessageImpl()
74 promise(std::move(promise_)) { in AskMessageImpl()
79 promise.set_value(); in operator ()()
90 std::promise<void> promise; member in mbgl::AskMessageImpl
102 std::unique_ptr<Message> makeMessage(std::promise<ResultType>&& promise, Object& object, MemberFn m… in makeMessage() argument
104 …AskMessageImpl<ResultType, Object, MemberFn, decltype(tuple)>>(std::move(promise), object, memberF… in makeMessage()
H A Dactor_ref.hpp43 std::promise<ResultType> promise; in ask() local
44 auto future = promise.get_future(); in ask()
49 std::move(promise), *object, fn, std::forward<Args>(args)... in ask()
53promise.set_exception(std::make_exception_ptr(std::runtime_error("Actor has gone away"))); in ask()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dfuture59 class promise
62 promise();
64 promise(allocator_arg_t, const Allocator& a);
65 promise(promise&& rhs) noexcept;
66 promise(const promise& rhs) = delete;
67 ~promise();
70 promise& operator=(promise&& rhs) noexcept;
71 promise& operator=(const promise& rhs) = delete;
72 void swap(promise& other) noexcept;
89 class promise<R&>
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dfuture59 class promise
62 promise();
64 promise(allocator_arg_t, const Allocator& a);
65 promise(promise&& rhs) noexcept;
66 promise(const promise& rhs) = delete;
67 ~promise();
70 promise& operator=(promise&& rhs) noexcept;
71 promise& operator=(const promise& rhs) = delete;
72 void swap(promise& other) noexcept;
89 class promise<R&>
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/
H A Dfuture134 class promise;
307 // asynchronous provider (such as a std::promise) and shared with one
476 // check this is only used by promise<R>::set_value(const R&)
477 // or promise<R&>::set_value(R&)
478 static_assert(is_same<_Res, _Arg&>::value // promise<R&>
479 || is_same<const _Res, _Arg>::value, // promise<R>
482 // Used by std::promise to copy construct the result.
483 typename promise<_Res>::_Ptr_type operator()() const
488 promise<_Res>* _M_promise;
496 // Used by std::promise to move construct the result.
[all …]
H A Dcoroutine207 // 17.12.3.5, promise accesss
208 _Promise& promise() const
232 /// [coroutine.promise.noop]
251 // 17.12.4.2.3, promise access
252 _Promise& promise() const
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/
H A Dfuture134 class promise;
307 // asynchronous provider (such as a std::promise) and shared with one
476 // check this is only used by promise<R>::set_value(const R&)
477 // or promise<R&>::set_value(R&)
478 static_assert(is_same<_Res, _Arg&>::value // promise<R&>
479 || is_same<const _Res, _Arg>::value, // promise<R>
482 // Used by std::promise to copy construct the result.
483 typename promise<_Res>::_Ptr_type operator()() const
488 promise<_Res>* _M_promise;
496 // Used by std::promise to move construct the result.
[all …]
H A Dcoroutine207 // 17.12.3.5, promise accesss
208 _Promise& promise() const
232 /// [coroutine.promise.noop]
251 // 17.12.4.2.3, promise access
252 _Promise& promise() const
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dthread.hpp45 std::promise<void> running_; in Thread()
78 std::promise<void> stoppable; in ~Thread()
111 paused = std::make_unique<std::promise<void>>(); in pause()
112 resumed = std::make_unique<std::promise<void>>(); in pause()
148 std::unique_ptr<std::promise<void>> paused;
149 std::unique_ptr<std::promise<void>> resumed;
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/experimental/
H A Dcoroutine215 _Promise& promise() const {
248 "pointers to the coroutine's promise type; use 'from_promise' instead");
273 _Promise& promise() const {
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/experimental/
H A Dcoroutine215 _Promise& promise() const {
248 "pointers to the coroutine's promise type; use 'from_promise' instead");
273 _Promise& promise() const {
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dqunit-1.18.0.js77 …d:this.testId});if(!config.pollution){saveGlobal();}},run:function(){var promise;config.current=th…
78 …ted=now();if(config.notrycatch){promise=this.callback.call(this.testEnvironment,this.assert);this.…
79 try{promise=this.callback.call(this.testEnvironment,this.assert);this.resolvePromise(promise);}catc…
80promise,test=this;return function runHook(){config.current=test;if(config.notrycatch){promise=hook…
81 try{promise=hook.call(test.testEnvironment,test.assert);test.resolvePromise(promise,hookName);}catc…
94 …n(promise,phase){var then,message,test=this;if(promise!=null){then=promise.then;if(QUnit.objectTyp… argument
H A DlayerBtn.js37 layerBtnsFadeOut.fadeOut().promise().done(function(){
H A Djquery-2.0.3.min.js4promise().done(e),this},slice:function(){return this.pushStack(d.apply(this,arguments))},first:fun…
5promise:function(e,t){var n,r=1,i=x.Deferred(),o=this,s=this.length,a=function(){--r||i.resolveWit… method
6promise(T).complete=d.add,T.success=T.done,T.error=T.fail,c.url=((e||c.url||Ut)+"").replace(Gt,"")…
/OK3568_Linux_fs/buildroot/package/binutils/2.38/
H A D0001-sh-conf.patch9 inept targets than that one, really. Go look, I promise).
/OK3568_Linux_fs/buildroot/package/binutils/2.39/
H A D0001-sh-conf.patch9 inept targets than that one, really. Go look, I promise).
/OK3568_Linux_fs/buildroot/package/binutils/2.37/
H A D0001-sh-conf.patch9 inept targets than that one, really. Go look, I promise).
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dcoroutine-builtins.def39 DEF_COROUTINE_BUILTIN (BUILT_IN_CORO_PROMISE, "promise",
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dcoroutine-builtins.def39 DEF_COROUTINE_BUILTIN (BUILT_IN_CORO_PROMISE, "promise",
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/
H A Dexecutor1712 mutable promise<__result> _M_promise;
1800 tuple<promise<_Result>&, _Executor> _M_t;
1846 std::promise<void> _M_promise;
1859 std::promise<void> _M_promise;
1876 std::promise<_UArg0> _M_promise;
1890 std::promise<_UArg1> _M_promise;
1909 std::promise<tuple<_UArgs...>> _M_promise;
1926 std::promise<tuple<_UArgs...>> _M_promise;
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/
H A Dexecutor1712 mutable promise<__result> _M_promise;
1800 tuple<promise<_Result>&, _Executor> _M_t;
1846 std::promise<void> _M_promise;
1859 std::promise<void> _M_promise;
1876 std::promise<_UArg0> _M_promise;
1890 std::promise<_UArg1> _M_promise;
1909 std::promise<tuple<_UArgs...>> _M_promise;
1926 std::promise<tuple<_UArgs...>> _M_promise;
/OK3568_Linux_fs/external/chromium/licenses/
H A DLICENSE.6910 1. We don't promise that this software works. (But if you find any bugs,
/OK3568_Linux_fs/buildroot/board/rockchip/rk3566_rk3568/fs-overlay/usr/share/matrix-gui-2.0/javascript/
H A Djquery-latest.js2promise)?h.promise().then(d.resolve,d.reject):d[g+"With"](this===b?d:this,[h])}):b[a](d[g])})}).pr… method
/OK3568_Linux_fs/buildroot/board/forlinx/ok3568/fs-overlay/usr/share/matrix-gui-2.0/javascript/
H A Djquery-latest.js2promise)?h.promise().then(d.resolve,d.reject):d[g+"With"](this===b?d:this,[h])}):b[a](d[g])})}).pr… method

123