Lines Matching defs:IntentSender

40  * <p>By giving a IntentSender to another application,
43 * identity). As such, you should be careful about how you build the IntentSender:
48 * <p>A IntentSender itself is simply a reference to a token maintained by
51 * IntentSender itself will remain usable from other processes that
53 * same kind of IntentSender (same operation, same Intent action, data,
54 * categories, and components, and same flags), it will receive a IntentSender
61 public class IntentSender implements Parcelable {
83 * completed. Primarily for use with a IntentSender that is
93 * @param IntentSender The IntentSender this operation was sent through.
99 void onSendFinished(IntentSender IntentSender, Intent intent,
105 private final IntentSender mIntentSender;
112 FinishedDispatcher(IntentSender pi, OnFinished who, Handler handler) {
136 * Perform the operation associated with this IntentSender, allowing the
142 * @param code Result code to supply back to the IntentSender's target.
153 * @throws SendIntentException Throws CanceledIntentException if the IntentSender
162 * Perform the operation associated with this IntentSender, allowing the
168 * @param code Result code to supply back to the IntentSender's target.
184 * @throws SendIntentException Throws CanceledIntentException if the IntentSender
223 * IntentSender, that is the identity under which you will actually be
282 * Comparison operator on two IntentSender objects, such that true
288 if (otherObj instanceof IntentSender) {
289 return mTarget.asBinder().equals(((IntentSender)otherObj)
303 sb.append("IntentSender{");
319 public static final Parcelable.Creator<IntentSender> CREATOR
320 = new Parcelable.Creator<IntentSender>() {
321 public IntentSender createFromParcel(Parcel in) {
323 return target != null ? new IntentSender(target) : null;
326 public IntentSender[] newArray(int size) {
327 return new IntentSender[size];
332 * Convenience function for writing either a IntentSender or null pointer to
336 * @param sender The IntentSender to write, or null.
337 * @param out Where to write the IntentSender.
339 public static void writeIntentSenderOrNullToParcel(IntentSender sender,
355 public static IntentSender readIntentSenderOrNullFromParcel(Parcel in) {
357 return b != null ? new IntentSender(b) : null;
366 public IntentSender(IIntentSender target) {
371 public IntentSender(IBinder target) {