Home
last modified time | relevance | path

Searched refs:handler_ptr (Results 1 – 7 of 7) sorted by relevance

/third_party/boost/boost/beast/core/
Dhandler_ptr.hpp55 class handler_ptr class
78 handler_ptr() = delete;
81 handler_ptr& operator=(handler_ptr const&) = delete;
84 handler_ptr& operator=(handler_ptr &&) = delete;
92 ~handler_ptr();
99 handler_ptr(handler_ptr&& other);
102 handler_ptr(handler_ptr const& other) = delete;
127 handler_ptr(DeducedHandler&& handler, Args&&... args);
/third_party/boost/boost/beast/core/impl/
Dhandler_ptr.hpp22 handler_ptr<T, Handler>::
38 handler_ptr<T, Handler>::
39 ~handler_ptr() in ~handler_ptr()
49 handler_ptr<T, Handler>::
50 handler_ptr(handler_ptr&& other) in handler_ptr() function in boost::beast::handler_ptr
64 handler_ptr<T, Handler>::
65 handler_ptr(DeducedHandler&& h, Args&&... args) in handler_ptr() function in boost::beast::handler_ptr
94 handler_ptr<T, Handler>::
113 handler_ptr<T, Handler>::
/third_party/boost/libs/beast/doc/qbk/
Drelease_notes.qbk97 * `handler_ptr` has been removed. Users should use `net::bind_handler` and/or
430 is preferred over `handler_ptr`
475 * `handler_ptr` is deprecated. ['Actions Required]: Use
760 * ([issue 1079]) Add `handler_ptr::has_value`
925 `handler_ptr`.
928 * `handler_ptr`
930 Actions required: user-defined composed operations using `handler_ptr`
933 * `handler_ptr`
935 for managed objects constructed by `handler_ptr` now receives a
937 constructor signature for state objects used with `handler_ptr`
/third_party/mindspore/mindspore/ccsrc/ps/core/
Dabstract_node.cc829 const auto &handler_ptr = handlers_[meta->cmd()]; in InitClientToScheduler() local
830 (this->*handler_ptr)(meta, data, size); in InitClientToScheduler()
1154 const auto &handler_ptr = server_handler_[meta->cmd()]; in CreateTcpServer() local
1155 (this->*handler_ptr)(conn, meta, protos, data, size); in CreateTcpServer()
Dscheduler_node.cc126 const auto &handler_ptr = handlers_[meta->cmd()]; in CreateTcpServer() local
127 (this->*handler_ptr)(server_, conn, meta, data, size); in CreateTcpServer()
/third_party/boost/libs/beast/
DCHANGELOG.md198 * handler_ptr has been removed. Users should use net::bind_handler and/or
818 * handler_ptr is deprecated
822 * Replace use of `handler_ptr` with `stable_async_base`
1253 * Simplify handler_ptr
1465 * Add handler_ptr::has_value
1680 * handler_ptr tests
1701 * handler_ptr is move-only
1706 * handler_ptr gives the strong exception guarantee
1711 used with handler_ptr to receive a const reference to
1751 * Remove unintended public members of handler_ptr
[all …]
/third_party/mindspore/mindspore/ccsrc/ps/
Dparameter_server.cc609 auto &handler_ptr = handlers_[meta->user_cmd()]; in operator ()() local
610 (this->*handler_ptr)(data, size, output); in operator ()()