Home
last modified time | relevance | path

Searched refs:Send (Results 1 – 25 of 385) sorted by relevance

12345678910>>...16

/third_party/boost/libs/beast/doc/qbk/04_http/
D04_serializer_streams.qbk15 * Send the header first, and the body later.
17 * Send a message incrementally: bounded work in each I/O cycle.
78 Send everything in a __serializer__ to a __SyncWriteStream__.
83 Send everything in a __serializer__ asynchronously to an __AsyncWriteStream__.
88 Send only the header from a __serializer__ to a __SyncWriteStream__.
93 Send only the header from a __serializer__ asynchronously to an __AsyncWriteStream__.
98 Send part of a __serializer__ to a __SyncWriteStream__.
103 Send part of a __serializer__ asynchronously to an __AsyncWriteStream__.
/third_party/node/src/
Dcares_wrap.h241 int Send(const char* name) { in Send() function
242 return Traits::Send(this, name); in Send()
402 static int Send(QueryWrap<AnyTraits>* wrap, const char* name);
410 static int Send(QueryWrap<ATraits>* wrap, const char* name);
418 static int Send(QueryWrap<AaaaTraits>* wrap, const char* name);
426 static int Send(QueryWrap<CaaTraits>* wrap, const char* name);
434 static int Send(QueryWrap<CnameTraits>* wrap, const char* name);
442 static int Send(QueryWrap<MxTraits>* wrap, const char* name);
450 static int Send(QueryWrap<NsTraits>* wrap, const char* name);
458 static int Send(QueryWrap<TxtTraits>* wrap, const char* name);
[all …]
Dudp_wrap.h95 virtual ssize_t Send(uv_buf_t* bufs,
134 static void Send(const v8::FunctionCallbackInfo<v8::Value>& args);
166 ssize_t Send(uv_buf_t* bufs,
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/nccl/
Dnccl_send_gpu_kernel.cc22Send, KernelAttr().AddAllSameAttr(true).AddInputAttr(kNumberTypeFloat32).AddOutputAttr(kNumberType…
25Send, KernelAttr().AddAllSameAttr(true).AddInputAttr(kNumberTypeFloat16).AddOutputAttr(kNumberType…
27 MS_REG_GPU_KERNEL_ONE(Send,
/third_party/flatbuffers/tests/MyGame/Example/
DMonsterStorage_grpc.go89 Send(*flatbuffers.Builder) error methodSpec
98 func (x *monsterStorageGetMaxHitPointClient) Send(m *flatbuffers.Builder) error { func
124 Send(*flatbuffers.Builder) error methodSpec
133 func (x *monsterStorageGetMinMaxHitPointsClient) Send(m *flatbuffers.Builder) error { func
211 Send(*flatbuffers.Builder) error methodSpec
219 func (x *monsterStorageRetrieveServer) Send(m *flatbuffers.Builder) error { func
254 Send(*flatbuffers.Builder) error methodSpec
263 func (x *monsterStorageGetMinMaxHitPointsServer) Send(m *flatbuffers.Builder) error { func
/third_party/mindspore/mindspore/core/mindrt/include/async/
Dasync.h57 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
73 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
89 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
107 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
120 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
133 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
157 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
176 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
195 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
222 (void)ActorMgr::GetActorMgrRef()->Send(aid, std::move(msg));
[all …]
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/
Dbasic_message_channel.h49 void Send(const T& message) { in Send() function
52 messenger_->Send(name_, raw_message->data(), raw_message->size()); in Send()
56 void Send(const T& message, BinaryReply reply) { in Send() function
59 messenger_->Send(name_, raw_message->data(), raw_message->size(), reply); in Send()
Dbinary_messenger.h36 virtual void Send(const std::string& channel,
42 virtual void Send(const std::string& channel,
/third_party/mindspore/mindspore/core/mindrt/include/actor/
Dactorapp.h44 …inline int Send(const AID &to, std::unique_ptr<MessageBase> msg) { return ActorBase::Send(to, std:… in Send() function
47 int Send(const std::string &to, const std::string &msgName, std::unique_ptr<M> msg) { in Send() function
51 return Send(to, std::move(localMsg)); in Send()
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/
Dplugin_registrar.cc66 void Send(const std::string& channel,
71 void Send(const std::string& channel,
89 void BinaryMessengerImpl::Send(const std::string& channel, in Send() function in flutter::BinaryMessengerImpl
96 void BinaryMessengerImpl::Send(const std::string& channel, in Send() function in flutter::BinaryMessengerImpl
/third_party/curl/docs/cmdline-opts/
Dhaproxy-protocol.d2 Help: Send HAProxy PROXY protocol v1 header
7 Send a HAProxy PROXY protocol v1 header at the beginning of the connection. This
/third_party/cef/libcef/common/mojom/
Dcef.mojom55 // Send a message to the render process.
58 // Send a command.
61 // Send a command that returns an async response.
67 // Send JavaScript for execution.
84 // Send a message to the browser process.
/third_party/mindspore/mindspore/core/mindrt/src/actor/
Dactor.cc141 int ActorBase::Send(const AID &to, std::unique_ptr<MessageBase> msg) { in Send() function in mindspore::ActorBase
143 return ActorMgr::GetActorMgrRef()->Send(to, std::move(msg)); in Send()
145 int ActorBase::Send(const AID &to, std::string &&name, std::string &&strMsg, bool remoteLink, bool … in Send() function in mindspore::ActorBase
149 return ActorMgr::GetActorMgrRef()->Send(to, std::move(msg), remoteLink, isExactNotRemote); in Send()
Dactormgr.h48 (void)ActorMgr::GetActorMgrRef()->Send(AID(to), std::move(msg)); in Receive()
65 …int Send(const AID &to, std::unique_ptr<MessageBase> msg, bool remoteLink = false, bool isExactNot…
/third_party/python/Doc/library/
Dnntplib.rst218 Send a ``QUIT`` command and close the connection. Once this method has been
245 Send ``AUTHINFO`` commands with the user name and password. If *user*
260 Send a ``STARTTLS`` command. This will enable encryption on the NNTP
279 Send a ``NEWGROUPS`` command. The *date* argument should be a
295 Send a ``NEWNEWS`` command. Here, *group* is a group name or ``'*'``, and
304 Send a ``LIST`` or ``LIST ACTIVE`` command. Return a pair
332 Send a ``LIST NEWSGROUPS`` command, where *grouppattern* is a wildmat string as
356 Send a ``GROUP`` command, where *name* is the group name. The group is
366 Send an ``OVER`` command, or an ``XOVER`` command on legacy servers.
409 Send a ``HELP`` command. Return a pair ``(response, list)`` where *list* is a
[all …]
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/
Dcontacts_demo.dart193 tooltip: 'Send message',
206 tooltip: 'Send message',
219 tooltip: 'Send message',
238 tooltip: 'Send personal e-mail',
251 tooltip: 'Send work e-mail',
/third_party/node/src/inspector/
Dworker_agent.cc22 void Send(const std::string& id, const std::string& message);
61 workers_->Send(id_, message); in SendMessageToFrontend()
138 void NodeWorkers::Send(const std::string& id, const std::string& message) { in Send() function in node::inspector::protocol::NodeWorkers
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/jsonrpc2/
Dhandler.go77 Send = Direction(true) const
84 case Send:
/third_party/mindspore/tests/st/nccl/
Dtest_nccl_send_recv_op.py24 from mindspore.ops.operations._inner_ops import Send, Receive
42 self.send = Send(sr_tag=0, dest_rank=rank+size//2, group=NCCL_WORLD_COMM_GROUP)
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/
Dhandler.go77 Send = Direction(true) const
84 case Send:
/third_party/spirv-tools/utils/vscode/src/lsp/jsonrpc2/
Dhandler.go77 Send = Direction(true) const
84 case Send:
/third_party/mindspore/mindspore/ccsrc/ps/core/communicator/
Dtcp_communicator.h94 …if (!abstrace_node_->Send(NodeRole::SERVER, rank_id, msg, msg_str.size(), static_cast<int>(command…
99 …if (!abstrace_node_->Send(NodeRole::SERVER, rank_id, msg, msg_str.size(), static_cast<int>(command…
/third_party/grpc/src/objective-c/manual_tests/GrpcIosTestUITests/
DGrpcIosTestUITests.m138 // Send test app to background
157 // Send test app to background
167 [self pressButton:@"Send Message"];
218 // Send test app to background
245 [self pressButton:@"Send Message"];
313 [self pressButton:@"Send Message"];
/third_party/mindspore/mindspore/ccsrc/runtime/device/gpu/distribution/
Dcollective_wrapper.cc57 ncclResult_t Send(const void *send_addr, size_t count, ncclDataType_t data_type, int peer_rank, cud… in Send() function
59 return NCCLWrapper::instance().Send(send_addr, count, data_type, peer_rank, stream, group_name); in Send()
/third_party/mindspore/mindspore/ccsrc/ps/core/
Dabstract_node.h92 …bool Send(const NodeRole &node_role, const uint32_t &rank_id, const DataPtr &data, size_t len, int…
94 …bool Send(const NodeRole &node_role, const std::vector<uint32_t> &rank_ids, const std::vector<Data…
96 …bool Send(const NodeRole &node_role, const uint32_t &rank_id, const DataPtr &message, size_t len, …
98 …bool Send(const NodeRole &node_role, const std::vector<uint32_t> &rank_ids, const std::vector<Data…

12345678910>>...16