HomeSort by relevance Sort by last modified time
    Searched defs:send (Results 101 - 125 of 646) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/ken/
chan.go 26 sc, rc chan int // send and recv chan
27 sv, rv int // send and recv seq
77 func (c *Chan) send() bool { func
78 // print("send ", c.sv, "\n");
90 func send(c *Chan) { func
96 if c.send() {
184 if s0.send() {
188 if s1.send() {
192 if s2.send() {
196 if s3.send() {
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
client.go 170 func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) { func
176 resp, didTimeout, err = send(req, c.transport(), deadline)
202 // send issues an HTTP request.
204 func send(ireq *Request, rt RoundTripper, deadline time.Time) (resp *Response, didTimeout func() bool, err error) { func
231 // Most the callers of send (Get, Post, et al) don't need
511 // the body may have been closed already by c.send()
615 if resp, didTimeout, err = c.send(req, deadline); err != nil {
616 // c.send() always closes req.Body
849 // Note that we don't send all cookies to subdomains
  /prebuilts/go/linux-x86/src/net/rpc/
client.go 71 func (client *Client) send(call *Call) { func
88 // Encode and send the request.
311 client.send(call)
  /prebuilts/go/linux-x86/test/
escape.go 84 func send(c chan int, x int) { func
90 go send(c, x)
105 go send(c, a[i])
  /prebuilts/go/linux-x86/test/ken/
chan.go 26 sc, rc chan int // send and recv chan
27 sv, rv int // send and recv seq
77 func (c *Chan) send() bool { func
78 // print("send ", c.sv, "\n");
90 func send(c *Chan) { func
96 if c.send() {
184 if s0.send() {
188 if s1.send() {
192 if s2.send() {
196 if s3.send() {
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
RequestHandler.java 47 * prepare, send, and shutdown requests.
142 if (send()) {
153 if (!send()) { // Should be rp.send()
170 * before closing down and send off a close_notify,
187 private boolean send() throws IOException { method in class:RequestHandler
189 return reply.send(cio);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
RequestHandler.java 47 * prepare, send, and shutdown requests.
142 if (send()) {
153 if (!send()) { // Should be rp.send()
170 * before closing down and send off a close_notify,
187 private boolean send() throws IOException { method in class:RequestHandler
189 return reply.send(cio);
  /system/bt/vendor_libs/test_vendor_lib/scripts/
test_channel.py 73 def send(self, data): member in class:Connection
103 self._connection.send(command)
158 user can send to the controller as well. These commands are processed parallel
163 test_channel: The communication channel to send data to the controller.
  /system/core/libmemunreachable/tests/
Binder_test.cpp 146 Parcel send; local
149 send.writeStrongBinder(binder);
150 status_t rv = service->transact(0, send, &reply);
  /tools/tradefederation/core/src/com/android/tradefed/util/net/
HttpMultipartPost.java 30 * To send multipart posts create this object passing it the url to send the requests to.
32 * using addFile method. After everything is set, send the request using the send method.
118 public void send() throws IOException, DataSizeException { method in class:HttpMultipartPost
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/net/
HttpMultipartPostTest.java 69 testPost.send();
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPendingIntentTest.java 75 pendingIntent.send();
90 pendingIntent.send();
139 pendingIntent.send(otherContext, 0, fillIntent);
156 pendingIntent.send(otherContext, 0, fillIntent);
178 pendingIntent.send(otherContext, 0, fillIntent);
400 current.send();
404 canceled.send();
417 pendingIntent.send();
  /libcore/luni/src/test/java/libcore/java/net/
DatagramSocketTest.java 82 // Confirm send() throws the pendingConnectException.
84 s.send(p);
160 otherSocket.send(new DatagramPacket(data, data.length));
178 srcSocket.send(new DatagramPacket(data, data.length));
207 srcDs.send(new DatagramPacket(new byte[16], 16));
208 srcDs.send(new DatagramPacket(new byte[16], 16));
  /cts/suite/audio_quality/lib/src/
SignalProcessingImpl.cpp 56 send((char*)terminationCommand, sizeof(terminationCommand));
122 if (!send(mBuffer.getBuffer(), mBuffer.getSizeWritten())) {
123 LOGE("send failed");
133 if (!send(mBuffer.getBuffer(), mBuffer.getSizeWritten())) {
134 LOGE("send failed");
137 if (!send((*buffer)->getData(), dataLen)) {
138 LOGE("send failed");
151 if (!send(mBuffer.getBuffer(), mBuffer.getSizeWritten())) {
152 LOGE("send failed");
241 bool SignalProcessingImpl::send(const char* data, int len function in class:SignalProcessingImpl
    [all...]
  /cts/tests/framework/base/activitymanager/util/src/android/server/am/
ActivityLauncher.java 146 pendingIntent.send();
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/
MidiEventThread.java 41 mDispatcher.send(event.data, 0,
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/
MidiEventThread.java 41 mDispatcher.send(event.data, 0,
  /developers/samples/android/common/src/java/com/example/android/common/midi/
MidiEventThread.java 41 mDispatcher.send(event.data, 0,
  /development/samples/browseable/MidiScope/src/com.example.android.common.midi/
MidiEventThread.java 41 mDispatcher.send(event.data, 0,
  /development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
MidiEventThread.java 41 mDispatcher.send(event.data, 0,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ssl.py 106 # The initializer for socket overrides the methods send(), recv(), etc.
181 def send(self, data, flags=0): member in class:SSLSocket
185 "non-zero flags not allowed in calls to send() on %s" %
200 return self._sock.send(data, flags)
220 v = self.send(data[count:])
  /external/autotest/frontend/client/src/autotest/common/
PaddedJsonRpcProxy.java 66 public void send(String rpcUrl) { method in class:PaddedJsonRpcProxy.JsonpRequest
153 jsonpRequest.send(rpcUrl);
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_java.cc 139 u64 *send = (u64*)MemToShadow(src + size); local
144 send = (u64*)MemToShadow(src) - 1;
147 for (; s != send; s += inc, d += inc) {
  /external/deqp/execserver/
xsExecutionServer.cpp 222 // Send bytes in buffer.
223 anyIO = send() || anyIO;
330 // Send some?
373 bool ExecutionRequestHandler::send (void) function in class:xs::ExecutionRequestHandler
382 deSocketResult result = m_socket->send(&m_sendRecvTmpBuf[0], maxLen, &numSent);
400 throw ConnectionError("send() failed");
  /external/libvncserver/webclients/novnc/include/web-socket-js/
web_socket.js 72 * Send data to the web socket.
73 * @param {string} data The data to send to the socket.
76 WebSocket.prototype.send = function(data) { method in class:WebSocket
88 var result = WebSocket.__flash.send(this.__id, encodeURIComponent(data));

Completed in 625 milliseconds

1 2 3 45 6 7 8 91011>>