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

1 2 3 4

  /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 {
  /system/core/metricsd/uploader/mock/
sender_mock.cc 23 bool SenderMock::Send(const std::string& content, const std::string& hash) {
  /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/metricsd/uploader/
sender_http.cc 29 bool HttpSender::Send(const std::string& content,
45 DLOG(ERROR) << "Failed to send data: " << error->GetMessage();
  /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);
trusty_gatekeeper.cpp 108 gatekeeper_error_t error = Send(request, &response);
140 gatekeeper_error_t error = Send(request, &response);
160 gatekeeper_error_t TrustyGateKeeperDevice::Send(uint32_t command, const GateKeeperMessage& request,
168 // Send it
  /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);
  /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)));
asyncstuntcpsocket_unittest.cc 107 bool Send(const void* data, size_t len) {
109 size_t ret = send_socket_->Send(
135 EXPECT_TRUE(Send(kStunMessageWithZeroLength,
144 EXPECT_TRUE(Send(kStunMessageWithZeroLength,
146 EXPECT_TRUE(Send(kStunMessageWithZeroLength,
148 EXPECT_TRUE(Send(kStunMessageWithZeroLength,
150 EXPECT_TRUE(Send(kStunMessageWithZeroLength,
157 EXPECT_TRUE(Send(kTurnChannelDataMessageWithZeroLength,
166 EXPECT_TRUE(Send(kTurnChannelDataMessage,
175 EXPECT_TRUE(Send(kTurnChannelDataMessageWithOddLength
    [all...]
  /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());
  /prebuilts/go/darwin-x86/test/
closedchan.go 19 Send(int)
32 func (c XChan) Send(x int) {
86 func (c SChan) Send(x int) {
151 func (c SSChan) Send(x int) {
252 // send should work with ,ok too: sent a value without blocking, so ok == true.
257 println("test1: recv on closed got non-zero after send on closed:", x, c.Impl())
261 // similarly Send.
262 shouldPanic(func() { c.Send(2) })
264 println("test1: recv on closed got non-zero after send on closed:", x, c.Impl())
  /prebuilts/go/linux-x86/test/
closedchan.go 19 Send(int)
32 func (c XChan) Send(x int) {
86 func (c SChan) Send(x int) {
151 func (c SSChan) Send(x int) {
252 // send should work with ,ok too: sent a value without blocking, so ok == true.
257 println("test1: recv on closed got non-zero after send on closed:", x, c.Impl())
261 // similarly Send.
262 shouldPanic(func() { c.Send(2) })
264 println("test1: recv on closed got non-zero after send on closed:", x, c.Impl())
  /system/core/libmemunreachable/
LeakPipe.h 32 // that only the sending process can have the send side of the pipe open, so if
105 bool Send(const T& value) {
108 ALOGE("failed to send value: %s", strerror(errno));
121 if (!Send(size)) {
127 ALOGE("failed to send vector: %s", strerror(errno));
169 ALOGE("failed to send vector: %s", strerror(errno));
  /external/libchrome/base/
sync_socket_posix.cc 28 // To avoid users sending negative message lengths to Send/Receive
122 size_t SyncSocket::Send(const void* buffer, size_t length) {
221 size_t CancelableSyncSocket::Send(const void* buffer, size_t length) {

Completed in 385 milliseconds

1 2 3 4