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
714 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
258 "Unable to send startActivity intent", e);
276 "Unable to send startActivity intent", e);
285 "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.
216 * of the intent that can be supplied when the actual send happens.
247 * of the intent that can be supplied when the actual send happens.
321 * {@link #send(Context, int, Intent)} and {@link #FLAG_UPDATE_CURRENT}, etc.
339 * of the intent that can be supplied when the actual send happen
567 public void send() throws CanceledException { method in class:PendingIntent
581 public void send(int code) throws CanceledException { method in class:PendingIntent
600 public void send(Context context, int code, Intent intent) method in class:PendingIntent
621 public void send(int code, OnFinished onFinished, Handler handler) method in class:PendingIntent
657 public void send(Context context, int code, Intent intent, method in class:PendingIntent
698 public void send(Context context, int code, Intent intent, method in class:PendingIntent
[all...]
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp669 bool send = true; local
726 send = false;
771 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.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.java371 // new send request. So when WAKE_LOCK_TIMEOUT occurs
622 send(rr);
632 send(rr);
657 send(rr);
677 send(rr);
698 send(rr);
718 send(rr);
739 send(rr);
760 send(rr);
781 send(r
2214 send(RILRequest rr) { method in class:RIL
[all...]

Completed in 1412 milliseconds