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

/frameworks/base/core/java/com/android/internal/nfc/
H A DP2pInitiator.java78 public void send(byte[] data) throws IOException { method in class:P2pInitiator
80 boolean isSuccess = mService.send(mHandle, data);
85 Log.e(TAG, "RemoteException in send(): ", e);
H A DLlcpSocket.java167 public void send(byte[] data) throws IOException { method in class:LlcpSocket
169 int result = mService.send(mHandle, data);
175 Log.e(TAG, "RemoteException in send(): ", e);
/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
568 public void send(Message msg) { method in class:Handler.MessengerImpl
/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.
218 * of the intent that can be supplied when the actual send happens.
254 * of the intent that can be supplied when the actual send happens.
300 * @see #send(Contex
305 public void send() throws CanceledException { method in class:PendingIntent
319 public void send(int code) throws CanceledException { method in class:PendingIntent
338 public void send(Context context, int code, Intent intent) method in class:PendingIntent
359 public void send(int code, OnFinished onFinished, Handler handler) method in class:PendingIntent
394 public void send(Context context, int code, Intent intent, method in class:PendingIntent
[all...]
/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/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/media/libstagefright/
H A DHTTPStream.cpp128 // will not unblock a pending send/recv on that socket on another thread.
171 sendData ? send(s, data, size, flags) : recv(s, data, size, flags);
294 status_t HTTPStream::send(const char *data, size_t size) { function in class:android::HTTPStream
319 status_t HTTPStream::send(const char *data) { function in class:android::HTTPStream
320 return send(data, strlen(data));
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java175 public int send(int code, Intent intent, String resolvedType, method in class:PendingIntentRecord
217 "Unable to send startActivity intent", e);
235 "Unable to send startActivity intent", e);
244 "Unable to send startService intent", e);
/frameworks/base/media/libmedia/
H A Dmediaplayer.cpp556 bool send = true; local
613 send = false;
650 if ((listener != 0) && send) {
/frameworks/base/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/text/
H A DSpannableStringBuilder.java383 // XXX send notification on removal
517 private void setSpan(boolean send, argument
579 if (send)
610 if (send)
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DRIL.java387 // new send request. So when WAKE_LOCK_TIMEOUT occurs
687 send(rr);
701 send(rr);
716 send(rr);
730 send(rr);
745 send(rr);
760 send(rr);
775 send(rr);
789 send(rr);
801 send(r
2067 send(RILRequest rr) { method in class:RIL
[all...]

Completed in 4116 milliseconds