HomeSort by relevance Sort by last modified time
    Searched defs:Send (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/syzkaller/vendor/google.golang.org/appengine/mail/
mail.go 16 if err := mail.Send(c, msg); err != nil {
67 // Send sends an email message.
68 func Send(c context.Context, msg *Message) error {
69 return send(c, "Send", msg)
74 return send(c, "SendToAdmins", msg)
77 func send(c context.Context, method string, msg *Message) error { func
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
EventChannel.c 29 evtchn_send_t Send;
31 Send.port = Port;
32 ReturnCode = XenHypercallEventChannelOp (EVTCHNOP_send, &Send);
  /external/libbrillo/brillo/dbus/
dbus_signal.h 53 // DBusSignal<...>::Send(...) dispatches the signal with the given arguments.
54 bool Send(const Args&... args) const {
  /external/libchrome/ipc/
message_router.cc 21 bool MessageRouter::Send(IPC::Message* msg) {
ipc_test_sink.cc 20 bool TestSink::Send(Message* message) {
ipc_message_pipe_reader.cc 52 bool MessagePipeReader::Send(std::unique_ptr<Message> message) {
55 "MessagePipeReader::Send", message->flags(),
67 DVLOG(4) << "Send " << message->type() << ": " << message->size();
ipc_sync_message_filter.cc 30 bool SyncMessageFilter::Send(Message* message) {
85 "SyncMessageFilter::Send", &done_event);
154 channel_->Send(message);
ipc_perftest_util.cc 51 channel_->Send(new TestMsg_Hello);
55 channel_->Send(new TestMsg_Ping(payload));
67 void ChannelReflectorListener::Send(IPC::Message* message) {
68 channel_->Send(message);
ipc_sync_message_unittest.cc 127 bool Send(IPC::Message* message) {
168 void Send(IPC::SyncMessage* msg) {
174 // "send" the message
193 Send(new Msg_C_0_1(&bool1));
196 Send(new Msg_C_0_2(&bool1, &int1));
200 Send(new Msg_C_0_3(&bool1, &int1, &string1));
206 Send(new Msg_C_1_1(1, &bool1));
210 Send(new Msg_C_1_2(false, &bool1, &int1));
215 Send(new Msg_C_1_3(3, &string1, &int1, &bool1));
221 Send(new Msg_C_2_1(1, false, &bool1))
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
sendrecv_ops_test.cc 27 // implementations, and to avoid the duplicate-send or duplicate-recv
30 Status Send(const ParsedKey& key, const Args& args, const Tensor& val,
42 static Graph* Send() {
45 test::graph::Send(g, test::graph::Constant(g, in0), "T", "/cpu:0", 1,
60 test::Benchmark("cpu", Send(), nullptr, nullptr, new DummyRendezvous)
  /external/webrtc/webrtc/base/
httprequest.cc 61 void HttpRequest::Send() {
asyncudpsocket.cc 61 int AsyncUDPSocket::Send(const void *pv, size_t cb,
64 int ret = socket_->Send(pv, cb);
109 // send datagram, indicating the remote address was unreachable.
testclient.cc 43 int TestClient::Send(const char* buf, size_t size) {
45 return socket_->Send(buf, size, options);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
AndroidFastbootTransport.h 61 Note that this function will be called after an error is reported by Send or
74 Send data. This function can be used both for command responses like "OKAY"
83 @param[in] BufferSize Size in bytes of data to send.
84 @param[in] Buffer Data to send.
89 @retval EFI_SUCCESS The data was sent or queued for send.
90 @retval EFI_DEVICE_ERROR There was an error preparing to send the data.
133 FASTBOOT_TRANSPORT_SEND Send;
UsbDevice.h 46 When this function is called, data previously buffered by calling Send() has
63 the endpoint to send the data from.
119 USB_DEVICE_SEND Send;
  /device/linaro/hikey/bluetooth/
h4_protocol.cc 29 size_t H4Protocol::Send(uint8_t type, const uint8_t* data, size_t length) {
  /external/autotest/client/cros/cellular/
prologix_scpi_driver.py 76 self.Send('++eot_enable 1')
77 self.Send('++eot_char 10')
81 # Must be an int so we can send it as an arg to ++auto.
83 self.Send('++auto %d' % self.auto)
103 self.Send('++addr %s' % gpib_address)
116 def Send(self, command):
119 self.socket.send(command + '\n')
130 # send *RST and *OPC? and then manually query with ++read,
133 self.Send('*RST')
162 """Send a GPIB command and return the response.""
    [all...]
scpi.py 52 The SCPI driver must export: Query, Send, Reset and Close
61 """Send the SCPI command and return the response."""
65 def Send(self, command):
66 """Send the SCPI command."""
67 self.driver.Send(command)
104 self.Send('*CLS') # Clear status
122 send strings quoted with " because that's what the 8960 returns.
123 We also fail if you send 1 and receive +1 back.
130 self.Send('%s %s' % (command, arg))
143 self.Send(c
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
sms.py 110 # until an action (such as send, receive, status report) is take with
120 def Send(self):
  /external/tensorflow/tensorflow/core/common_runtime/
rendezvous_mgr.cc 39 Status IntraProcessRendezvous::Send(const ParsedKey& parsed,
42 VLOG(1) << "IntraProcessRendezvous Send " << this << " " << parsed.FullKey();
49 return local_->Send(parsed, args, val, is_dead);
  /external/webrtc/webrtc/libjingle/xmpp/
presenceouttask.cc 22 PresenceOutTask::Send(const PresenceStatus & s) {
  /external/webrtc/webrtc/p2p/base/
asyncstuntcpsocket.cc 51 int AsyncStunTCPSocket::Send(const void *pv, size_t cb,
58 // If we are blocking on send, then silently drop this packet
stunserver_unittest.cc 41 void Send(const StunMessage& msg) {
44 Send(buf.Data(), static_cast<int>(buf.Length()));
46 void Send(const char* buf, int len) {
81 Send(req);
109 Send(bad, static_cast<int>(strlen(bad)));
  /device/google/cuttlefish_common/common/libs/net/
netlink_client.cpp 36 virtual bool Send(const NetlinkRequest& message);
106 bool NetlinkClientImpl::Send(const NetlinkRequest& message) {
122 LOG(ERROR) << "Failed to send netlink message: "
  /device/google/cuttlefish_common/common/vsoc/lib/
socket_forward_region_view.cpp 63 bool SocketForwardRegionView::Send(int connection_id, const Packet& packet) {
89 Send(connection_id, kRestartPacket);
205 region_view()->Send(connection_id(), Packet::MakeBegin(port_));
207 region_view()->Send(connection_id(), Packet::MakeBegin(port_));
230 bool SocketForwardRegionView::ShmConnectionView::Send(const Packet& packet) {
237 return region_view()->Send(connection_id(), packet);
248 bool SocketForwardRegionView::ShmSender::Send(const Packet& packet) {
249 return view_->Send(packet);

Completed in 1222 milliseconds

1 2 3 4