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

1234

/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}.
55 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver.MyResultReceiver
81 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver
93 mReceiver.send(resultCode, resultData);
H A DMessenger.java20 * Reference to a Handler, which others can use to send messages to it.
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/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/native/opengl/libs/GLES_trace/src/
H A Dgltrace_transport.h43 int send(void *data, size_t len);
75 int send(GLMessage *msg);
H A Dgltrace_transport.cpp110 int TCPStream::send(void *buf, size_t len) { function in class:android::gltrace::TCPStream
154 int n = mStream->send((void *)mStringBuffer.data(), mStringBuffer.size());
166 int BufferedOutputStream::send(GLMessage *msg) { function in class:android::gltrace::BufferedOutputStream
/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/rs/
H A DrsFifoSocket.cpp46 ::send(sv[0], &d, sizeof(d), 0);
47 ::send(sv[1], &d, sizeof(d), 0);
57 size_t ret = ::send(sv[0], data, bytes, 0);
103 size_t ret = ::send(sv[1], data, bytes, 0);
/frameworks/base/core/java/android/nfc/cardemulation/
H A DHostApduService.java190 * MSG_RESPONSE_APDU is sent to NfcService to send
254 mNfcService.send(responseMsg);
271 mNfcService.send(msg);
288 mNfcService.send(msg);
316 mMessenger.send(responseMsg);
347 mMessenger.send(unhandledMsg);
/frameworks/native/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/core/java/android/app/
H A DPendingIntent.java119 * {@link #send()} is called on it, it will be automatically
120 * canceled for you and any future attempt to send through it will fail.
154 * Exception thrown when trying to send through a PendingIntent that
171 * Callback interface for discovering when a send operation has
180 * Called when a send operation as completed.
184 * @param resultCode The final result code determined by the send.
244 * of the intent that can be supplied when the actual send happens.
275 * of the intent that can be supplied when the actual send happens.
349 * {@link #send(Context, int, Intent)} and {@link #FLAG_UPDATE_CURRENT}, etc.
367 * of the intent that can be supplied when the actual send happen
595 public void send() throws CanceledException { method in class:PendingIntent
609 public void send(int code) throws CanceledException { method in class:PendingIntent
628 public void send(Context context, int code, Intent intent) method in class:PendingIntent
649 public void send(int code, OnFinished onFinished, Handler handler) method in class:PendingIntent
685 public void send(Context context, int code, Intent intent, method in class:PendingIntent
726 public void send(Context context, int code, Intent intent, method in class:PendingIntent
[all...]
H A DEnterTransitionCoordinator.java70 mResultReceiver.send(MSG_SET_REMOTE_RECEIVER, resultReceiverBundle);
196 mResultReceiver.send(MSG_SHARED_ELEMENT_DESTINATION, state);
206 mResultReceiver.send(MSG_SHARED_ELEMENT_DESTINATION, state);
362 mResultReceiver.send(MSG_HIDE_SHARED_ELEMENTS, null);
506 send(MSG_EXIT_TRANSITION_COMPLETE, null);
/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/telephony/src/java/com/android/internal/telephony/
H A DRIL.java389 // new send request. So when WAKE_LOCK_TIMEOUT occurs
658 send(rr);
668 send(rr);
692 send(rr);
709 send(rr);
719 send(rr);
739 send(rr);
760 send(rr);
780 send(rr);
801 send(r
2317 send(RILRequest rr) { method in class:RIL
[all...]
/frameworks/base/core/java/android/net/
H A DProxyDataTracker.java82 Log.e(TAG, "no messenger binder in the intent to send future requests");
142 mProxyStatusService.send(Message.obtain(null, MSG_TEAR_DOWN_REQUEST));
165 mProxyStatusService.send(Message.obtain(null, MSG_SETUP_REQUEST));
194 * change from the previous state, send a notification to
/frameworks/base/location/java/android/location/
H A DSettingInjectorService.java184 messenger.send(message);
/frameworks/av/media/libstagefright/rtsp/
H A DARTPWriter.h121 void send(const sp<ABuffer> &buffer, bool isRTCP);
/frameworks/base/core/java/android/provider/
H A DBrowser.java196 * @param string the string to send
215 Intent send = new Intent(Intent.ACTION_SEND);
216 send.setType("text/plain");
217 send.putExtra(Intent.EXTRA_TEXT, stringToSend);
220 Intent i = Intent.createChooser(send, chooserDialogTitle);
/frameworks/base/tests/JobSchedulerTestApp/src/com/android/demo/jobSchedulerApp/service/
H A DTestJobService.java75 callback.send(m);
/frameworks/base/tests/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
H A DWakeUpCall.java98 msgr.send(msg);
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DPart.java311 public void send(OutputStream out) throws IOException { method in class:Part
312 LOG.trace("enter send(OutputStream out)");
326 * #send(OutputStream) as well
392 parts[i].send(out);

Completed in 664 milliseconds

1234