HomeSort by relevance Sort by last modified time
    Searched defs:Send (Results 1 - 25 of 102) 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/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
UsbDevice.h 46 When this function is called, data previously buffered by calling Send() has
63 the endpoint to send the data from.
113 USB_DEVICE_SEND Send;
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.
127 FASTBOOT_TRANSPORT_SEND Send;
  /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/v8/tools/testrunner/server/
compression.py 40 def Send(obj, sock):
  /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/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/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)));
  /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) {
  /external/flatbuffers/tests/MyGame/Example/
MonsterStorage_grpc.go 97 Send(* flatbuffers.Builder) error
105 func (x *monsterStorageRetrieveServer) Send(m *flatbuffers.Builder) error {
  /system/core/fastboot/
socket_mock.cpp 41 bool SocketMock::Send(const void* data, size_t length) {
43 ADD_FAILURE() << "Send() was called when no message was expected";
48 ADD_FAILURE() << "Send() was called out-of-order";
54 ADD_FAILURE() << "Send() expected " << events_.front().message << ", but got " << message;
63 // Mock out multi-buffer send to be one large send, since that's what it should looks like from
65 bool SocketMock::Send(std::vector<cutils_socket_buffer_t> buffers) {
70 return Send(data.data(), data.size());

Completed in 1644 milliseconds

1 2 3 4 5