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

/frameworks/base/media/java/android/media/midi/
H A DMidiReceiver.java90 * Called to send MIDI data to the receiver without a timestamp.
96 * communication, reset all controllers and send all notes off.
103 public void send(byte[] msg, int offset, int count) throws IOException { method in class:MidiReceiver
105 send(msg, offset, count, 0L);
109 * Called to send MIDI data to the receiver with a specified timestamp.
115 * communication, reset all controllers and send all notes off.
123 public void send(byte[] msg, int offset, int count, long timestamp) method in class:MidiReceiver
/frameworks/base/core/java/android/os/
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);
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 DHandler.java25 * A Handler allows you to send and process {@link Message} and Runnable
719 public void send(Message msg) { method in class:Handler.MessengerImpl
/frameworks/native/opengl/libs/GLES_trace/src/
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/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java201 public int send(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, method in class:PendingIntentRecord
282 Slog.w(TAG, "Unable to send startActivity intent", e);
303 Slog.w(TAG, "Unable to send startActivity intent", e);
311 Slog.w(TAG, "Unable to send startService intent", e);
/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/av/media/libstagefright/rtsp/
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/android/app/
H A DPendingIntent.java121 * {@link #send()} is called on it, it will be automatically
122 * canceled for you and any future attempt to send through it will fail.
157 * This means that the additional intent argument passed to the send
164 * Exception thrown when trying to send through a PendingIntent that
181 * Callback interface for discovering when a send operation has
190 * Called when a send operation as completed.
194 * @param resultCode The final result code determined by the send.
264 * of the intent that can be supplied when the actual send happens.
295 * of the intent that can be supplied when the actual send happens.
369 * {@link #send(Contex
615 public void send() throws CanceledException { method in class:PendingIntent
629 public void send(int code) throws CanceledException { method in class:PendingIntent
649 public void send(Context context, int code, @Nullable Intent intent) method in class:PendingIntent
670 public void send(int code, @Nullable OnFinished onFinished, @Nullable Handler handler) method in class:PendingIntent
708 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
751 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
798 public void send(Context context, int code, @Nullable Intent intent, method in class:PendingIntent
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationManagerCompat.java276 * Helper class to manage a queue of pending tasks to send to notification side channel
510 task.send(record.service);
535 /** Queue of pending tasks to send to this listener service */
558 public void send(INotificationSideChannel service) throws RemoteException; method in interface:NotificationManagerCompat.Task
575 public void send(INotificationSideChannel service) throws RemoteException { method in class:NotificationManagerCompat.NotifyTask
610 public void send(INotificationSideChannel service) throws RemoteException { method in class:NotificationManagerCompat.CancelTask
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp805 bool send = true; local
862 send = false;
910 if ((listener != 0) && send) {
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp136 void notifyError(bool send, status_t err, const char *detail);
324 notifyError(false /* send */, err, "Recvfrom failed.");
517 notifyError(false /* send */, err, "Recv failed.");
562 n = send(mSocket, datagram->data(), datagram->size(), 0);
589 notifyError(true /* send */, err, "Send datagram failed.");
631 n = send(mSocket, frag.mBuffer->data(), frag.mBuffer->size(), 0);
661 notifyError(true /* send */, err, "Send failed.");
781 bool send, status_t err, const char *detail) {
785 msg->setInt32("send", send);
780 notifyError( bool send, status_t err, const char *detail) argument
[all...]
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java661 // Note: if send is false, then it is the caller's responsibility to restore
662 // invariants. If send is false and the span already exists, then this method
664 private void setSpan(boolean send, Object what, int start, int end, int flags) { argument
689 if (send) {
734 if (send) {
757 if (send) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java416 // new send request. So when WAKE_LOCK_TIMEOUT occurs
693 send(rr);
703 send(rr);
727 send(rr);
744 send(rr);
757 send(rr);
777 send(rr);
798 send(rr);
818 send(rr);
839 send(r
2358 send(RILRequest rr) { method in class:RIL
[all...]

Completed in 423 milliseconds