Searched defs:send (Results 1 - 25 of 118) sorted by relevance

12345

/external/autotest/client/common_lib/
H A Dmail.py4 def send(from_address, to_addresses, cc_addresses, subject, message_body): function
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DMessageConnection.java48 public void send( Message message ); method in interface:MessageConnection
54 public void send( int channel, Message message ); method in interface:MessageConnection
H A DClient.java80 public void send( Message message ); method in interface:Client
86 public void send( int channel, Message message ); method in interface:Client
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMessenger.java23 public void send(Message message) throws RemoteException { method in class:ShadowMessenger
H A DShadowResultReceiver.java19 public void send(int resultCode, android.os.Bundle resultData) { method in class:ShadowResultReceiver
/external/autotest/client/cros/netprotos/
H A Dinterface_host.py129 # When we send responses, we want to send them from this particular
154 def send(self, data, ip_addr, port): member in class:InterfaceDatagramSocket
157 @param data: string of raw bytes to send.
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DEndpoint.java73 public void send( ByteBuffer data ); method in interface:Endpoint
84 * ne send() calls will fail with an exception... even while
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DPing.java32 void send() { method in class:Ping
/external/testng/src/test/java/test/dependent/
H A DDepBugSampleTest.java37 @Test(dependsOnMethods = "send")
42 public void send() throws Exception { method in class:DepBugSampleTest
43 log("send");
/external/autotest/client/common_lib/cros/graphite/
H A Dstats.py84 def send(self, subname, value): member in class:Statsd.__init__.Average
92 statsd.Average.send(self, subname, value)
120 def send(self, subname, value): member in class:Statsd.__init__.Gauge
128 statsd.Gauge.send(self, subname, value)
143 def send(self, subname, value): member in class:Statsd.__init__.Timer
151 statsd.Timer.send(self, subname, value)
171 def send(self, subname, value, timestamp=None): member in class:Statsd.__init__.Raw
175 The datapoint we send is pretty much unchanged (will not be
183 statsd.Raw.send(self, subname, value, timestamp)
/external/jetty/src/java/org/eclipse/jetty/client/
H A DAsyncHttpConnection.java97 // Is there more content to send or should we complete the generator
100 // Look for more content to send.
219 _destination.send(_pipeline);
231 _destination.send(_pipeline);
262 public boolean send(HttpExchange ex) throws IOException method in class:AsyncHttpConnection
264 boolean sent=super.send(ex);
H A DBlockingHttpConnection.java157 // Is there more content to send or should we complete the generator
160 // Look for more content to send.
268 _destination.send(_pipeline);
279 _destination.send(_pipeline);
302 public boolean send(HttpExchange ex) throws IOException method in class:BlockingHttpConnection
304 boolean sent=super.send(ex);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
H A DUdpEndpoint.java115 public void send( ByteBuffer data ) method in class:UdpEndpoint
130 //socket.send(p);
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
H A DJsonRpcServer.java93 send(writer, JsonRpcResult.error(id, new RpcError("Unknown RPC: " + method)), UID);
97 send(writer, JsonRpcResult.result(id, rpc.invoke(receiverManager, params)), UID);
100 send(writer, JsonRpcResult.error(id, t), UID);
117 private void send(PrintWriter writer, JSONObject result, int UID) { method in class:JsonRpcServer
/external/autotest/client/bin/net/
H A Dnet_utils_mock.py67 def send(self, buf): member in class:socket_stub
/external/autotest/client/cros/cellular/wardmodem/
H A Dat_channel.py137 def send(self, at_command): member in class:ATChannel
141 @param at_command: The AT command to send.
143 @return: True if send was successful, False if send failed because the
146 @raises: OSError if send failed for any reason other than that the
225 # to be '\r\n' send spurious '\r's on the channel. If so, we must ignore
/external/autotest/client/deps/lansim/src/py/
H A Dhost.py98 This is useful to send IP packets with send_ip() to hosts that haven't
211 # lport: The port from where we send data out.
233 receive and send packets. This module only supports UDP sockets.
251 This UDP socket interface provides a way to send and received UDP messages
309 def send(self, data, ip_addr, port): member in class:UDPSocket
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
H A Dinspector_websocket_unittest.py16 """A fake websocket that allows test to send random data."""
28 def send(self, data): member in class:FakeSocket
/external/chromium-trace/catapult/third_party/typ/typ/
H A Dpool.py78 def send(self, msg): member in class:_ProcessPool
191 def send(self, msg): member in class:_AsyncPool
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
H A DNioEndpoint.java86 send( CLOSE_MARKER, false, true );
121 protected void send( ByteBuffer data, boolean copy, boolean wakeup ) method in class:NioEndpoint
166 public void send( ByteBuffer data ) method in class:NioEndpoint
174 send( data, true, true );
/external/parameter-framework/asio/include/asio/
H A Dbasic_stream_socket.hpp210 * 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");
245 * This function is used to send data on the stream socket. The function
251 * @param flags Flags specifying how the send call is to be made.
257 * @note The send operatio
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...]
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dbasic_stream_socket.hpp210 * 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");
245 * This function is used to send data on the stream socket. The function
251 * @param flags Flags specifying how the send call is to be made.
257 * @note The send operatio
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...]
/external/valgrind/memcheck/tests/
H A Dwrap8.c104 static void send ( char* s ) function
117 send("in ");
118 send(s);
119 send("-pre: fact(");
120 send(buf);
121 send(")\n");
130 send("in ");
131 send(s);
132 send("-post: fact(");
133 send(bu
[all...]
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
H A DAsyncHttpURLConnection.java53 public void send() { method in class:AsyncHttpURLConnection
/external/autotest/client/cros/i2c/
H A Dusb_to_i2c.py57 @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

Completed in 1959 milliseconds

12345