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

1 2 3 4 5

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug118.go 9 func Send(c chan int) int {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug118.go 9 func Send(c chan int) int {
  /prebuilts/go/darwin-x86/test/chan/
select.go 19 func Send(a, b chan uint) int {
42 if v := Send(a, b); v != 2 {
43 println("Send returned", v, "!= 2")
50 if v := Send(a, nil); v != 1 {
51 println("Send returned", v, "!= 1")
  /prebuilts/go/linux-x86/test/chan/
select.go 19 func Send(a, b chan uint) int {
42 if v := Send(a, b); v != 2 {
43 println("Send returned", v, "!= 2")
50 if v := Send(a, nil); v != 1 {
51 println("Send returned", v, "!= 1")
  /system/core/trusty/gatekeeper/
trusty_gatekeeper.h 68 gatekeeper_error_t Send(uint32_t command, const GateKeeperMessage& request,
71 gatekeeper_error_t Send(const EnrollRequest& request, EnrollResponse *response) {
72 return Send(GK_ENROLL, request, response);
75 gatekeeper_error_t Send(const VerifyRequest& request, VerifyResponse *response) {
76 return Send(GK_VERIFY, request, response);
  /device/google/cuttlefish_common/common/commands/wifi_relay/
nl_client.cpp 58 void NlClient::Send(Cmd* msg) {
  /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/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/v8/tools/testrunner/server/
compression.py 40 def Send(obj, sock):
  /external/webrtc/webrtc/base/
httprequest.cc 61 void HttpRequest::Send() {
  /device/google/cuttlefish_common/common/libs/tcp_socket/
tcp_socket.cpp 69 ssize_t ClientSocket::Send(const uint8_t* data, std::size_t size) {
88 ssize_t ClientSocket::Send(const Message& message) {
89 return Send(&message[0], message.size());
  /device/google/cuttlefish_common/common/vsoc/lib/
wifi_exchange_view.cpp 27 intptr_t WifiExchangeView::Send(const void* buffer, intptr_t length) {
  /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
  /hardware/interfaces/bluetooth/1.0/default/
h4_protocol.cc 32 size_t H4Protocol::Send(uint8_t type, const uint8_t* data, size_t length) {
mct_protocol.cc 42 size_t MctProtocol::Send(uint8_t type, const uint8_t* data, size_t length) {
  /system/bt/vendor_libs/linux/interface/
h4_protocol.cc 31 size_t H4Protocol::Send(uint8_t type, const uint8_t* data, size_t length) {

Completed in 1422 milliseconds

1 2 3 4 5