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

1 2 3 4 5 67 8 91011>>

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSearch.java 62 // send out the request to /checksearchdomain as early as possible.
161 pending.send(this, Activity.RESULT_OK, fillIn);
  /packages/apps/Settings/src/com/android/settings/
TetherProvisioningActivity.java 63 mResultReceiver.send(ConnectivityManager.TETHER_ERROR_PROVISION_FAILED, null);
79 mResultReceiver.send(result, null);
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
connection.py 441 def send(self, obj): member in class:ConnectionWrapper
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aetools.py 194 self.send('ascr', 'noop')
199 self.send('ascr', 'noop')
219 """Send a pre-created appleevent, await the reply and unpack it"""
221 raise RuntimeError, "No window manager access, cannot send AppleEvent"
227 def send(self, code, subcode, parameters = {}, attributes = {}): member in class:TalkTo
228 """Send an appleevent given code/subcode/pars/attrs and unpack the reply"""
236 """Send 'activate' command"""
237 self.send('misc', 'actv')
252 _reply, _arguments, _attributes = self.send(_code, _subcode,
282 _reply, _arguments, _attributes = self.send(_code, _subcode
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ssl.py 112 # The initializer for socket overrides the methods send(), recv(), etc.
190 def send(self, data, flags=0): member in class:SSLSocket
194 "non-zero flags not allowed in calls to send() on %s" %
209 return self._sock.send(data, flags)
229 v = self.send(data[count:])
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
connection.py 441 def send(self, obj): member in class:ConnectionWrapper
  /prebuilts/gdb/linux-x86/lib/python2.7/
ssl.py 112 # The initializer for socket overrides the methods send(), recv(), etc.
190 def send(self, data, flags=0): member in class:SSLSocket
194 "non-zero flags not allowed in calls to send() on %s" %
209 return self._sock.send(data, flags)
229 v = self.send(data[count:])
  /prebuilts/go/darwin-x86/src/runtime/
chan.go 38 sendx uint // send index
41 sendq waitq // list of send waiters
129 * generic single channel send/recv
145 gopark(nil, nil, "chan send (nil chan)", traceEvGoStop, 2)
166 // and report that the send cannot proceed.
185 panic(plainError("send on closed channel"))
189 // Found a waiting receiver. We pass the value we want to send
191 send(c, sg, ep, func() { unlock(&c.lock) }, 3)
196 // Space is available in the channel buffer. Enqueue the element to send.
234 goparkunlock(&c.lock, "chan send", traceEvGoBlockSend, 3
262 func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) { func
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
chan.go 38 sendx uint // send index
41 sendq waitq // list of send waiters
129 * generic single channel send/recv
145 gopark(nil, nil, "chan send (nil chan)", traceEvGoStop, 2)
166 // and report that the send cannot proceed.
185 panic(plainError("send on closed channel"))
189 // Found a waiting receiver. We pass the value we want to send
191 send(c, sg, ep, func() { unlock(&c.lock) }, 3)
196 // Space is available in the channel buffer. Enqueue the element to send.
234 goparkunlock(&c.lock, "chan send", traceEvGoBlockSend, 3
262 func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) { func
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 441 def send(self, obj): member in class:ConnectionWrapper
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetools.py 194 self.send('ascr', 'noop')
199 self.send('ascr', 'noop')
219 """Send a pre-created appleevent, await the reply and unpack it"""
221 raise RuntimeError, "No window manager access, cannot send AppleEvent"
227 def send(self, code, subcode, parameters = {}, attributes = {}): member in class:TalkTo
228 """Send an appleevent given code/subcode/pars/attrs and unpack the reply"""
236 """Send 'activate' command"""
237 self.send('misc', 'actv')
252 _reply, _arguments, _attributes = self.send(_code, _subcode,
282 _reply, _arguments, _attributes = self.send(_code, _subcode
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ssl.py 112 # The initializer for socket overrides the methods send(), recv(), etc.
190 def send(self, data, flags=0): member in class:SSLSocket
194 "non-zero flags not allowed in calls to send() on %s" %
209 return self._sock.send(data, flags)
229 v = self.send(data[count:])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 441 def send(self, obj): member in class:ConnectionWrapper
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ssl.py 112 # The initializer for socket overrides the methods send(), recv(), etc.
190 def send(self, data, flags=0): member in class:SSLSocket
194 "non-zero flags not allowed in calls to send() on %s" %
209 return self._sock.send(data, flags)
229 v = self.send(data[count:])
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Socket.java 87 * @param data Data to send. Data size is defined by the length of the
91 public void send(byte[] data) throws IOException { method in class:Socket
101 Logw("'send' request on closed Socket " + mChannelName);
110 * @param data Data to send.
115 public void send(byte[] data, int offset, int len) throws IOException { method in class:Socket
118 Logw("'send' request on closed Socket " + mChannelName);
  /system/extras/tests/binder/benchmarks/
binderAddInts.cpp 131 Parcel send, reply; local
140 send.writeInt32(val1);
141 send.writeInt32(val2);
143 // Send the parcel, while timing how long it takes for
146 send, &reply)) != 0) {
  /system/libhwbinder/vts/performance/
PerfTest.h 33 // a send() on the other side to unblock.
41 send(val);
50 int send(const T& v) { function in class:Pipe
  /test/vti/dashboard/src/main/java/com/android/vts/util/
EmailHelper.java 117 * @param body The html (string) body to send in the email.
147 * @param msg Message object to send.
150 public static boolean send(Message msg) { method in class:EmailHelper
152 Transport.send(msg);
167 send(msg);
179 public static boolean send(List<String> recipients, String subject, String body) { method in class:EmailHelper
182 return send(msg);
  /tools/tradefederation/core/src/com/android/tradefed/util/
IEmail.java 30 * A method to send a {@link Message}. Verifies that the to, subject, and body fields of the
38 * @param msg The {@link IEmail.Message} to try to send
43 public void send(Message msg) throws IllegalArgumentException, IOException; method in interface:IEmail
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketChannelClient.java 52 // WebSocket send queue. Messages are added to the queue when WebSocket
125 // Send any previously accumulated messages.
127 send(sendMessage);
135 public void send(String message) { method in class:WebSocketChannelClient
140 // Store outgoing messages and send them after websocket client
147 Log.e(TAG, "WebSocket send() in error or closed state : " + message);
152 json.put("cmd", "send");
158 reportError("WebSocket send JSON error: " + e.getMessage());
165 // This call can be used to send WebSocket messages before WebSocket
176 // Send "bye" to WebSocket server
    [all...]
  /frameworks/base/core/java/android/provider/
Browser.java 205 * @param string the string to send
224 Intent send = new Intent(Intent.ACTION_SEND); local
225 send.setType("text/plain");
226 send.putExtra(Intent.EXTRA_TEXT, stringToSend);
229 Intent i = Intent.createChooser(send, chooserDialogTitle);
  /frameworks/base/packages/StatementService/src/com/android/statementservice/
DirectStatementService.java 202 resultReceiver.send(RESULT_FAIL, Bundle.EMPTY);
207 resultReceiver.send(RESULT_FAIL, Bundle.EMPTY);
212 resultReceiver.send(RESULT_FAIL, Bundle.EMPTY);
262 mResultReceiver.send(RESULT_FAIL, Bundle.EMPTY);
272 mResultReceiver.send(RESULT_FAIL, Bundle.EMPTY);
289 mResultReceiver.send(RESULT_SUCCESS, result);
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbMidiDevice.java 125 receiver.send(msg, offset, count, timestamp);
237 outputReceivers[index].send(buffer, 0, count, timestamp); method
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramSocketAdaptor.java 139 public void send(DatagramPacket p) throws IOException { method in class:DatagramSocketAdaptor
150 // Legacy DatagramSocket will send in this case
159 dc.send(bb, p.getSocketAddress());
163 dc.send(bb, p.getSocketAddress());
305 throw new IllegalArgumentException("Invalid send size");
382 protected void send(DatagramPacket p) throws IOException {}
  /cts/tests/app/src/android/app/cts/
PendingIntentTest.java 149 mPendingIntent.send();
169 // From the doc send function will throw CanceledException if the PendingIntent
172 mPendingIntent.send();
173 mPendingIntent.send();
187 mPendingIntent.send();
250 pi.send();
261 pi.send();
269 pi.send();
285 mPendingIntent.send();
310 mPendingIntent.send(mContext, 1, null, mFinish, null)
    [all...]

Completed in 2036 milliseconds

1 2 3 4 5 67 8 91011>>