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

/frameworks/base/core/java/android/os/
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);
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 DHandler.java25 * A Handler allows you to send and process {@link Message} and Runnable
706 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/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/services/java/com/android/server/am/
H A DPendingIntentRecord.java190 public int send(int code, Intent intent, String resolvedType, method in class:PendingIntentRecord
257 "Unable to send startActivity intent", e);
275 "Unable to send startActivity intent", e);
284 "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.java93 * {@link #send()} is called on it, it will be automatically
94 * canceled for you and any future attempt to send through it will fail.
126 * Exception thrown when trying to send through a PendingIntent that
143 * Callback interface for discovering when a send operation has
152 * Called when a send operation as completed.
156 * @param resultCode The final result code determined by the send.
212 * of the intent that can be supplied when the actual send happens.
239 * of the intent that can be supplied when the actual send happens.
311 * {@link #send(Context, int, Intent)} and {@link #FLAG_UPDATE_CURRENT}, etc.
325 * of the intent that can be supplied when the actual send happen
539 public void send() throws CanceledException { method in class:PendingIntent
553 public void send(int code) throws CanceledException { method in class:PendingIntent
572 public void send(Context context, int code, Intent intent) method in class:PendingIntent
593 public void send(int code, OnFinished onFinished, Handler handler) method in class:PendingIntent
629 public void send(Context context, int code, Intent intent, method in class:PendingIntent
670 public void send(Context context, int code, Intent intent, method in class:PendingIntent
[all...]
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp650 bool send = true; local
707 send = false;
749 if ((listener != 0) && send) {
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.cpp105 void notifyError(bool send, status_t err, const char *detail);
276 notifyError(false /* send */, err, "Recvfrom failed.");
395 notifyError(false /* send */, err, "Recv failed.");
412 n = send(mSocket, datagram->data(), datagram->size(), 0);
431 notifyError(true /* send */, err, "Send datagram failed.");
462 n = send(mSocket, mOutBuffer.c_str(), mOutBuffer.size(), 0);
481 notifyError(true /* send */, err, "Send failed.");
519 bool send, status_t err, const char *detail) {
523 msg->setInt32("send", send);
518 notifyError( bool send, status_t err, const char *detail) argument
[all...]
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java591 private void setSpan(boolean send, Object what, int start, int end, int flags) { argument
616 if (send) Log.e("SpannableStringBuilder",
658 if (send) sendSpanChanged(what, ostart, oend, nstart, nend);
688 if (send) sendSpanAdded(what, nstart, nend);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java387 // new send request. So when WAKE_LOCK_TIMEOUT occurs
660 send(rr);
685 send(rr);
705 send(rr);
726 send(rr);
746 send(rr);
767 send(rr);
788 send(rr);
809 send(rr);
823 send(r
2109 send(RILRequest rr) { method in class:RIL
[all...]

Completed in 419 milliseconds