Searched refs:send (Results 1 - 25 of 60) sorted by relevance

123

/frameworks/base/core/java/android/os/
H A DIMessenger.aidl24 void send(in Message msg);
H A DResultReceiver.java24 * then pass to others and send through IPC, and receive results they
25 * supply with {@link #send}.
48 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver.MyResultReceiver
74 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver
86 mReceiver.send(resultCode, resultData);
H A DMessenger.java20 * Reference to a Handler, which others can use to send messages to it.
43 * @param message The Message to send. Usually retrieved through
49 public void send(Message message) throws RemoteException { method in class:Messenger
50 mTarget.send(message);
/frameworks/base/core/java/com/android/internal/os/
H A DIResultReceiver.aidl24 void send(int resultCode, in Bundle resultData);
/frameworks/base/core/java/android/content/
H A DIIntentSender.aidl24 int send(int code, in Intent intent, String resolvedType,
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DIntentSenderTest.java35 is.send();
55 is.send(Activity.RESULT_CANCELED, finish, null);
64 is.send();
82 is.send(Activity.RESULT_CANCELED, finish, null);
H A DSubActivityScreen.java54 apr.send(this, RESULT_OK, res);
/frameworks/base/cmds/keystore/
H A Dkeystore_cli.cpp58 send(sock, argv[1], 1, 0);
64 send(sock, &bytes, 2, 0);
65 send(sock, argv[i], length, 0);
H A Dkeystore_get.h54 if (send(sock, &code, 1, 0) == 1 && send(sock, bytes, 2, 0) == 2 &&
55 send(sock, key, length, 0) == length && shutdown(sock, SHUT_WR) == 0 &&
/frameworks/base/core/java/android/app/
H A DPendingIntent.java64 * {@link #send()} is called on it, it will be automatically
65 * canceled for you and any future attempt to send through it will fail.
97 * Exception thrown when trying to send through a PendingIntent that
114 * Callback interface for discovering when a send operation has
123 * Called when a send operation as completed.
127 * @param resultCode The final result code determined by the send.
183 * of the intent that can be supplied when the actual send happens.
228 * {@link #send(Context, int, Intent)} and {@link #FLAG_UPDATE_CURRENT}, etc.
242 * of the intent that can be supplied when the actual send happens.
280 * of the intent that can be supplied when the actual send happen
371 public void send() throws CanceledException { method in class:PendingIntent
385 public void send(int code) throws CanceledException { method in class:PendingIntent
404 public void send(Context context, int code, Intent intent) method in class:PendingIntent
425 public void send(int code, OnFinished onFinished, Handler handler) method in class:PendingIntent
461 public void send(Context context, int code, Intent intent, method in class:PendingIntent
502 public void send(Context context, int code, Intent intent, method in class:PendingIntent
[all...]
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/mockril/
H A DMockRilTest.java93 Msg.send(mMockRilChannel, mh, data);
159 Msg.send(mMockRilChannel, 1, 9876, 0, null);
193 Msg.send(mMockRilChannel, RilCtrlCmds.CTRL_CMD_SET_RADIO_STATE, 0, 0, cmdrs);
216 Msg.send(mMockRilChannel, RilCtrlCmds.CTRL_CMD_SET_MT_CALL, 0, 0, cmd);
232 Msg.send(mMockRilChannel, RilCtrlCmds.CTRL_CMD_HANGUP_CONN_REMOTE, 0, 0, hangupCmd);
249 Msg.send(mMockRilChannel, RilCtrlCmds.CTRL_CMD_SET_CALL_TRANSITION_FLAG, 0, 0, cmd);
260 Msg.send(mMockRilChannel, RilCtrlCmds.CTRL_CMD_ADD_DIALING_CALL, 0, 0, cmdDialCall);
269 // send command to force call state change
270 Msg.send(mMockRilChannel, RilCtrlCmds.CTRL_CMD_SET_CALL_ALERT, 0, 0, null);
280 // send comman
[all...]
/frameworks/base/libs/rs/
H A DrsFifoSocket.cpp52 size_t ret = ::send(sv[0], data, bytes, 0);
74 size_t ret = ::send(sv[1], data, bytes, 0);
/frameworks/base/libs/binder/
H A DBpBinder.cpp109 Parcel send, reply; local
112 INTERFACE_TRANSACTION, send, &reply);
137 Parcel send; local
139 status_t err = transact(PING_TRANSACTION, send, &reply);
147 Parcel send; local
149 send.writeFileDescriptor(fd);
151 send.writeInt32(numArgs);
153 send.writeString16(args[i]);
155 status_t err = transact(DUMP_TRANSACTION, send, &reply);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DRIL.java379 // new send request. So when WAKE_LOCK_TIMEOUT occurs
668 send(rr);
688 send(rr);
709 send(rr);
729 send(rr);
750 send(rr);
771 send(rr);
792 send(rr);
806 send(rr);
818 send(r
2077 send(RILRequest rr) { method in class:RIL
[all...]
H A DSMSDispatcher.java98 /** SMS send complete. */
128 /** Delay before next send attempt on a failed SMS, in milliseconds. */
291 sTracker.mSentIntent.send(RESULT_ERROR_LIMIT_EXCEEDED);
293 Log.e(TAG, "failed to send back RESULT_ERROR_LIMIT_EXCEEDED");
318 sTracker.mSentIntent.send(RESULT_ERROR_LIMIT_EXCEEDED);
320 Log.e(TAG, "failed to send back RESULT_ERROR_LIMIT_EXCEEDED");
351 * Called when SMS send completes. Broadcasts a sentIntent on success.
356 * an SmsResponse instance if send was successful. ar.userObj
365 Log.d(TAG, "SMS send complete. Broadcasting "
385 sentIntent.send(mContex
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DMessengerService.java34 msg.replyTo.send(reply);
H A DMessengerTest.java68 mServiceMessenger.send(msg);
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DTakeScreenshotService.java45 callback.send(reply);
/frameworks/opt/mailcommon/java/com/android/mailcommon/
H A DWebViewContextMenu.java118 Intent send = new Intent(Intent.ACTION_SEND);
119 send.setType("text/plain");
120 ResolveInfo ri = pm.resolveActivity(send, PackageManager.MATCH_DEFAULT_ONLY);
125 Intent send = new Intent(Intent.ACTION_SEND);
126 send.setType("text/plain");
127 send.putExtra(Intent.EXTRA_TEXT, url);
130 mActivity.startActivity(Intent.createChooser(send, mActivity.getText(
/frameworks/base/core/java/android/provider/
H A DBrowser.java195 * @param string the string to send
214 Intent send = new Intent(Intent.ACTION_SEND);
215 send.setType("text/plain");
216 send.putExtra(Intent.EXTRA_TEXT, stringToSend);
219 Intent i = Intent.createChooser(send, chooserDialogTitle);
/frameworks/base/media/libstagefright/rtsp/
H A DARTPWriter.h121 void send(const sp<ABuffer> &buffer, bool isRTCP);
H A DARTPWriter.cpp305 send(buffer, true /* isRTCP */);
311 void ARTPWriter::send(const sp<ABuffer> &buffer, bool isRTCP) { function in class:android::ARTPWriter
567 send(buffer, true /* isRTCP */);
604 send(buffer, false /* isRTCP */);
651 send(buffer, false /* isRTCP */);
717 send(buffer, false /* isRTCP */);
825 send(buffer, false /* isRTCP */);
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DPart.java305 public void send(OutputStream out) throws IOException { method in class:Part
306 LOG.trace("enter send(OutputStream out)");
320 * #send(OutputStream) as well
386 parts[i].send(out);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestsExecutor.java236 /** By default windows cannot be opened, so just send null back. */
278 * However, we send the message to the service to speed up the rebooting
291 mManagerServiceMessenger.send(serviceMsg);
402 // We only send the reset message in the former case.
416 mManagerServiceMessenger.send(serviceMsg);
431 mManagerServiceMessenger.send(serviceMsg);
531 mManagerServiceMessenger.send(serviceMsg);
550 mManagerServiceMessenger.send(serviceMsg);
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java61 * send unsolicited messages back to the client. Or the server keeps
97 * means that the channel can be used to send commends to the destination
159 /** Error attempting to send a message */
230 * @param dstMessenger is the hander to send messages to.
250 * @param dstHandler is the hander to send messages to.
264 * @param dstHandler is the hander to send messages to.
332 * @param klass is the class to send messages to.
391 * @param dstHandler is the hander to send messages to.
442 mDstMessenger.send(msg);
526 srcMsg.replyTo.send(dstMs
[all...]

Completed in 371 milliseconds

123