/external/autotest/client/common_lib/ |
H A D | mail.py | 4 def send(from_address, to_addresses, cc_addresses, subject, message_body): function
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/ |
H A D | MessageConnection.java | 48 public void send( Message message ); method in interface:MessageConnection 54 public void send( int channel, Message message ); method in interface:MessageConnection
|
H A D | Client.java | 80 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 D | ShadowMessenger.java | 23 public void send(Message message) throws RemoteException { method in class:ShadowMessenger
|
H A D | ShadowResultReceiver.java | 19 public void send(int resultCode, android.os.Bundle resultData) { method in class:ShadowResultReceiver
|
/external/autotest/client/cros/netprotos/ |
H A D | interface_host.py | 129 # 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 D | Endpoint.java | 73 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 D | Ping.java | 32 void send() { method in class:Ping
|
/external/testng/src/test/java/test/dependent/ |
H A D | DepBugSampleTest.java | 37 @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 D | stats.py | 84 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 D | AsyncHttpConnection.java | 97 // 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 D | BlockingHttpConnection.java | 157 // 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 D | UdpEndpoint.java | 115 public void send( ByteBuffer data ) method in class:UdpEndpoint 130 //socket.send(p);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/ |
H A D | JsonRpcServer.java | 93 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 D | net_utils_mock.py | 67 def send(self, buf): member in class:socket_stub
|
/external/autotest/client/cros/cellular/wardmodem/ |
H A D | at_channel.py | 137 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 D | host.py | 98 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 D | inspector_websocket_unittest.py | 16 """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 D | pool.py | 78 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 D | NioEndpoint.java | 86 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 D | basic_stream_socket.hpp | 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"); 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 D | basic_stream_socket.hpp | 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"); 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 D | wrap8.c | 104 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 D | AsyncHttpURLConnection.java | 53 public void send() { method in class:AsyncHttpURLConnection
|
/external/autotest/client/cros/i2c/ |
H A D | 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
|