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

1 23 4 5 6 7 8 91011>>

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Ping.java 32 void send() { method in class:Ping
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_stream_socket.hpp 208 /// Send some data on the socket.
210 * This function is used to send data on the stream socket. The function
220 * @note The send operation may not transmit all of the data to the peer.
225 * To send a single data buffer use the @ref buffer function as follows:
227 * socket.send(asio::buffer(data, size));
234 std::size_t send(const ConstBufferSequence& buffers) function in class:asio::basic_stream_socket
237 std::size_t s = this->get_service().send(
239 asio::detail::throw_error(ec, "send");
243 /// Send some data on the socket.
245 * This function is used to send data on the stream socket. The functio
271 std::size_t send(const ConstBufferSequence& buffers, function in class:asio::basic_stream_socket
300 std::size_t send(const ConstBufferSequence& buffers, function in class:asio::basic_stream_socket
    [all...]
  /frameworks/base/core/java/android/os/
Messenger.java 20 * Reference to a Handler, which others can use to send messages to it.
48 * Send a Message to this Messenger's Handler.
50 * @param message The Message to send. Usually retrieved through
56 public void send(Message message) throws RemoteException { method in class:Messenger
57 mTarget.send(message);
  /frameworks/base/core/java/com/android/internal/midi/
MidiFramer.java 80 mReceiver.send(data, sysExStartOffset,
94 mReceiver.send(data, sysExStartOffset,
98 mReceiver.send(data, offset, 1, timestamp);
107 mReceiver.send(mBuffer, 0, mCount, timestamp);
116 // send any accumulatedSysEx data
118 mReceiver.send(data, sysExStartOffset,
  /frameworks/base/core/tests/coretests/src/android/app/activity/
IntentSenderTest.java 35 is.send();
55 is.send(Activity.RESULT_CANCELED, finish, null);
64 is.send();
82 is.send(Activity.RESULT_CANCELED, finish, null);
  /libcore/ojluni/src/main/java/java/nio/channels/
DatagramChannel.java 43 * connected. A datagram channel need not be connected in order for the {@link #send
44 * send} and {@link #receive receive} methods to be used. A datagram channel may be
47 * every send and receive operation. A datagram channel must be connected in
67 * <td> The size of the socket send buffer </td>
413 * java.net.DatagramSocket#send send} method of the {@link
463 public abstract int send(ByteBuffer src, SocketAddress target) method in class:DatagramChannel
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeLlcpConnectionlessSocket.java 53 public void send(int sap, byte[] data) throws IOException { method in class:NativeLlcpConnectionlessSocket
  /prebuilts/go/darwin-x86/test/
bigalg.go 69 func send() { func
75 go send()
  /prebuilts/go/darwin-x86/test/chan/
select5.go 11 // Each test does only one real send or receive at a time, but phrased
43 do(send)
148 {{/* Send n, receive it one way or another into x, check that they match. */}}
156 {{/* so test the default branch both before and after the send. */}}
181 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
184 panic("dummy send")
190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
193 panic("nilch send")
208 {{/* Send n, receive it one way or another into x, check that they match. */}}
225 {{/* so test the default branch both before and after the send. */}
274 var send = parse("send", ` var
    [all...]
  /prebuilts/go/linux-x86/test/
bigalg.go 69 func send() { func
75 go send()
  /prebuilts/go/linux-x86/test/chan/
select5.go 11 // Each test does only one real send or receive at a time, but phrased
43 do(send)
148 {{/* Send n, receive it one way or another into x, check that they match. */}}
156 {{/* so test the default branch both before and after the send. */}}
181 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
184 panic("dummy send")
190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
193 panic("nilch send")
208 {{/* Send n, receive it one way or another into x, check that they match. */}}
225 {{/* so test the default branch both before and after the send. */}
274 var send = parse("send", ` var
    [all...]
  /system/netd/client/
FwmarkClient.cpp 75 int FwmarkClient::send(FwmarkCommand* data, int fd, FwmarkConnectInfo* connectInfo) { function in class:FwmarkClient
  /system/netd/server/
NetlinkListener.cpp 78 Status NetlinkListener::send(const Slice msg) { function in class:android::net::NetlinkListener
  /cts/tests/tests/midi/src/android/midi/cts/
MidiEchoTestService.java 72 mOutputReceiver.send(data, offset, count, timestamp);
  /cts/tests/tests/os/src/android/os/cts/
ResultReceiverTest.java 34 sender.send(resultCode, bundle);
  /developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
SendMessageActivity.java 66 findViewById(R.id.send).setOnClickListener(mOnClickListener);
136 case R.id.send:
137 send();
144 * Pretends to send the text to the contact. This only shows a dummy message.
146 private void send() { method in class:SendMessageActivity
  /developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
SendMessageActivity.java 66 findViewById(R.id.send).setOnClickListener(mOnClickListener);
136 case R.id.send:
137 send();
144 * Pretends to send the text to the contact. This only shows a dummy message.
146 private void send() { method in class:SendMessageActivity
  /development/samples/browseable/DirectShare/src/com.example.android.directshare/
SendMessageActivity.java 66 findViewById(R.id.send).setOnClickListener(mOnClickListener);
136 case R.id.send:
137 send();
144 * Pretends to send the text to the contact. This only shows a dummy message.
146 private void send() { method in class:SendMessageActivity
  /device/generic/goldfish/wifi/ipv6proxy/
socket.cpp 175 Result Socket::send(const void* data, size_t size) { function in class:Socket
177 return Result::error("Attempt to send on a socket in invalid state");
180 int res = ::send(mSocket, data, size, 0);
192 return Result::error("Attempt to send on a socket in invalid state");
  /external/autotest/client/bin/net/
net_utils_mock.py 67 def send(self, buf): member in class:socket_stub
  /external/autotest/client/cros/i2c/
usb_to_i2c.py 57 @param int_array: The data to send in integer array.
62 self.send(slave_addr, int_array)
69 def send(self, slave_addr, int_array): member in class:I2CController
76 @param int_array: The data to send in integer array.
153 def send(self, slave_addr, int_array): member in class:_I2CControllerSC18IM700
  /external/curl/lib/
memdebug.h 69 /* send/receive sockets */
98 #define send(a,b,c,d) curl_dosend(a,b,c,d, __LINE__, __FILE__) macro
  /external/deqp/framework/delibs/decpp/
deSocket.hpp 98 deSocketResult send (const void* buf, size_t bufSize, size_t* numSent) { return deSocket_send(m_socket, buf, bufSize, numSent); } function in class:de::Socket
  /external/libvncserver/webclients/novnc/include/
websock.js 57 this._sQ = []; // Send queue
170 // Send Queue
179 this._websocket.send(this._encode_message());
185 Util.Info("Delaying send, bufferedAmount: " +
191 send: function (arr) {
197 this.send(str.split('').map(function (chr) {
189 }, method in class:Websock
  /external/ltp/testcases/open_posix_testsuite/stress/mqueues/
multi_send_rev_1.c 38 int *send(void *info) function
46 printf("Enter into send [%d], mq = %d \n", send_info.ThreadID,
53 printf("[%d] send '%s' in thread send [%d]. \n", i + 1,
123 pthread_create(&sed[i], NULL, (void *)send, (void *)&info[i]);

Completed in 533 milliseconds

1 23 4 5 6 7 8 91011>>