Lines Matching refs:flags

62  * categories, and components, and same flags), it will receive a PendingIntent
89 * Intents you will use, then you can alternatively use the flags
256 * @param flags The parcel flags when it was written.
258 void onMarshaled(PendingIntent intent, Parcel parcel, int flags);
291 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
293 * or any of the flags as supported by
302 Intent intent, @Flags int flags) {
303 return getActivity(context, requestCode, intent, flags, null);
322 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
324 * or any of the flags as supported by
335 @NonNull Intent intent, @Flags int flags, @Nullable Bundle options) {
347 flags, options, UserHandle.myUserId());
360 @NonNull Intent intent, int flags, Bundle options, UserHandle user) {
372 flags, options, user.getIdentifier());
414 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
416 * or any of the flags as supported by
425 @NonNull Intent[] intents, @Flags int flags) {
426 return getActivities(context, requestCode, intents, flags, null);
464 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
466 * {@link #FLAG_IMMUTABLE} or any of the flags as supported by
475 @NonNull Intent[] intents, @Flags int flags, @Nullable Bundle options) {
487 null, null, requestCode, intents, resolvedTypes, flags, options,
501 @NonNull Intent[] intents, int flags, Bundle options, UserHandle user) {
514 flags, options, user.getIdentifier());
534 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
536 * {@link #FLAG_IMMUTABLE} or any of the flags as supported by
545 Intent intent, @Flags int flags) {
546 return getBroadcastAsUser(context, requestCode, intent, flags,
556 Intent intent, int flags, UserHandle userHandle) {
567 flags, null, userHandle.getIdentifier());
588 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
590 * {@link #FLAG_IMMUTABLE} or any of the flags as supported by
599 @NonNull Intent intent, @Flags int flags) {
600 return buildServicePendingIntent(context, requestCode, intent, flags,
618 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
620 * {@link #FLAG_IMMUTABLE} or any of the flags as supported by
629 @NonNull Intent intent, @Flags int flags) {
630 return buildServicePendingIntent(context, requestCode, intent, flags,
635 Intent intent, int flags, int serviceKind) {
646 flags, null, UserHandle.myUserId());
1076 public void writeToParcel(Parcel out, int flags) {
1080 listener.onMarshaled(this, out, flags);