Searched refs:extras (Results 1 - 25 of 341) sorted by relevance

1234567891011>>

/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
H A DCarHelper.java24 // Use these extras to reserve space for the corresponding actions, even when they are disabled
38 public static void setSlotReservationFlags(Bundle extras, boolean reservePlayingQueueSlot, argument
41 extras.putBoolean(SLOT_RESERVATION_QUEUE, true);
43 extras.remove(SLOT_RESERVATION_QUEUE);
46 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_PREV, true);
48 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
51 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_NEXT, true);
53 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
H A DCarHelper.java24 // Use these extras to reserve space for the corresponding actions, even when they are disabled
38 public static void setSlotReservationFlags(Bundle extras, boolean reservePlayingQueueSlot, argument
41 extras.putBoolean(SLOT_RESERVATION_QUEUE, true);
43 extras.remove(SLOT_RESERVATION_QUEUE);
46 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_PREV, true);
48 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
51 extras.putBoolean(SLOT_RESERVATION_SKIP_TO_NEXT, true);
53 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
/frameworks/base/core/java/android/os/
H A DIProgressListener.aidl23 void onStarted(int id, in Bundle extras);
24 void onProgress(int id, int progress, in Bundle extras);
25 void onFinished(int id, in Bundle extras);
/frameworks/support/customtabs/src/android/support/customtabs/
H A DICustomTabsCallback.aidl26 void onNavigationEvent(int navigationEvent, in Bundle extras) = 1;
28 void onMessageChannelReady(in Bundle extras) = 3;
29 void onPostMessage(String message, in Bundle extras) = 4;
H A DCustomTabsCallback.java61 * @param extras Reserved for future use.
63 public void onNavigationEvent(int navigationEvent, Bundle extras) {} argument
87 * @param extras Reserved for future use.
89 public void onMessageChannelReady(Bundle extras) {} argument
98 * @param extras Reserved for future use.
100 public void onPostMessage(String message, Bundle extras) {} argument
H A DPostMessageService.java33 ICustomTabsCallback callback, Bundle extras) throws RemoteException {
34 callback.onMessageChannelReady(extras);
39 String message, Bundle extras) throws RemoteException {
40 callback.onPostMessage(message, extras);
H A DIPostMessageService.aidl28 void onMessageChannelReady(in ICustomTabsCallback callback, in Bundle extras) = 1;
29 void onPostMessage(in ICustomTabsCallback callback, String message, in Bundle extras) = 2;
/frameworks/base/core/java/android/content/
H A DSyncActivityTooManyDeletes.java50 Bundle extras = getIntent().getExtras();
51 if (extras == null) {
56 mNumDeletes = extras.getLong("numDeletes");
57 mAccount = (Account) extras.getParcelable("account");
58 mAuthority = extras.getString("authority");
59 mProvider = extras.getString("provider");
117 Bundle extras = new Bundle();
118 extras.putBoolean(ContentResolver.SYNC_EXTRAS_OVERRIDE_TOO_MANY_DELETIONS, true);
119 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
120 extras
[all...]
H A DPeriodicSync.java34 /** Any extras that parameters that are to be passed to the sync adapter. */
35 public final Bundle extras; field in class:PeriodicSync
47 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) { argument
50 if (extras == null) {
51 this.extras = new Bundle();
53 this.extras = new Bundle(extras);
67 this.extras = new Bundle(other.extras);
76 public PeriodicSync(Account account, String authority, Bundle extras, argument
[all...]
H A DISyncServiceAdapter.aidl31 * extras, which is guaranteed to not be null.
35 * @param extras SyncAdapter-specific parameters.
38 void startSync(ISyncContext syncContext, in Bundle extras);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProvider.java29 * with the received extras.
62 Bundle extras = intent.getExtras();
63 if (extras != null) {
64 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS);
70 Bundle extras = intent.getExtras();
71 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID)) {
72 final int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID);
76 Bundle extras = intent.getExtras();
77 if (extras !
[all...]
/frameworks/support/media-compat/api24/android/support/v4/media/session/
H A DMediaControllerCompatApi24.java32 public static void prepareFromMediaId(Object controlsObj, String mediaId, Bundle extras) { argument
33 ((MediaController.TransportControls) controlsObj).prepareFromMediaId(mediaId, extras);
36 public static void prepareFromSearch(Object controlsObj, String query, Bundle extras) { argument
37 ((MediaController.TransportControls) controlsObj).prepareFromSearch(query, extras);
40 public static void prepareFromUri(Object controlsObj, Uri uri, Bundle extras) { argument
41 ((MediaController.TransportControls) controlsObj).prepareFromUri(uri, extras);
H A DMediaSessionCompatApi24.java49 public void onPrepareFromMediaId(String mediaId, Bundle extras); argument
50 public void onPrepareFromSearch(String query, Bundle extras); argument
51 public void onPrepareFromUri(Uri uri, Bundle extras); argument
66 public void onPrepareFromMediaId(String mediaId, Bundle extras) { argument
67 mCallback.onPrepareFromMediaId(mediaId, extras);
71 public void onPrepareFromSearch(String query, Bundle extras) { argument
72 mCallback.onPrepareFromSearch(query, extras);
76 public void onPrepareFromUri(Uri uri, Bundle extras) { argument
77 mCallback.onPrepareFromUri(uri, extras);
/frameworks/support/customtabs/tests/src/android/support/customtabs/
H A DTestCustomTabsCallback.java32 public void onNavigationEvent(final int navigationEvent, final Bundle extras) {
33 TestCustomTabsCallback.this.onNavigationEvent(navigationEvent, extras);
43 public void onMessageChannelReady(final Bundle extras)
45 TestCustomTabsCallback.this.onMessageChannelReady(extras);
49 public void onPostMessage(final String message, final Bundle extras)
51 TestCustomTabsCallback.this.onPostMessage(message, extras);
60 public void onMessageChannelReady(Bundle extras) { argument
72 public void onPostMessage(String message, Bundle extras) { argument
/frameworks/base/core/java/android/app/
H A DPackageInstallObserver.java33 String msg, Bundle extras) {
35 extras);
53 * @param extras If non-null, this Bundle contains extras providing
56 * about which extras apply to various failures; in particular
63 Bundle extras) {
62 onPackageInstalled(String basePackageName, int returnCode, String msg, Bundle extras) argument
/frameworks/base/media/java/android/media/session/
H A DISessionCallback.aidl33 void onPrepareFromMediaId(String mediaId, in Bundle extras);
34 void onPrepareFromSearch(String query, in Bundle extras);
35 void onPrepareFromUri(in Uri uri, in Bundle extras);
37 void onPlayFromMediaId(String mediaId, in Bundle extras);
38 void onPlayFromSearch(String query, in Bundle extras);
39 void onPlayFromUri(in Uri uri, in Bundle extras);
H A DISessionController.aidl54 void prepareFromMediaId(String mediaId, in Bundle extras);
55 void prepareFromSearch(String string, in Bundle extras);
56 void prepareFromUri(in Uri uri, in Bundle extras);
58 void playFromMediaId(String mediaId, in Bundle extras);
59 void playFromSearch(String string, in Bundle extras);
60 void playFromUri(in Uri uri, in Bundle extras);
/frameworks/support/media-compat/api23/android/support/v4/media/session/
H A DMediaSessionCompatApi23.java31 public void onPlayFromUri(Uri uri, Bundle extras); argument
40 public void onPlayFromUri(Uri uri, Bundle extras) { argument
41 mCallback.onPlayFromUri(uri, extras);
H A DMediaControllerCompatApi23.java28 public static void playFromUri(Object controlsObj, Uri uri, Bundle extras) { argument
29 ((MediaController.TransportControls) controlsObj).playFromUri(uri, extras);
/frameworks/base/core/java/android/content/pm/
H A DIPackageMoveObserver.aidl27 void onCreated(int moveId, in Bundle extras);
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractor.aidl30 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
33 in VoiceInteractor.PickOptionRequest.Option[] options, in Bundle extras);
35 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
37 IVoiceInteractorCallback callback, in VoiceInteractor.Prompt prompt, in Bundle extras);
39 IVoiceInteractorCallback callback, String command, in Bundle extras);
/frameworks/base/core/java/android/nfc/tech/
H A DNfcB.java65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_B);
66 mAppData = extras.getByteArray(EXTRA_APPDATA);
67 mProtInfo = extras.getByteArray(EXTRA_PROTINFO);
H A DNfcBarcode.java65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_BARCODE);
66 if (extras != null) {
67 mType = extras.getInt(EXTRA_BARCODE_TYPE);
69 throw new NullPointerException("NfcBarcode tech extras are null.");
H A DNfcV.java66 Bundle extras = tag.getTechExtras(TagTechnology.NFC_V);
67 mRespFlags = extras.getByte(EXTRA_RESP_FLAGS);
68 mDsfId = extras.getByte(EXTRA_DSFID);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationBigPictureTemplateViewWrapper.java45 final Bundle extras = notification.getNotification().extras;
46 Icon overRiddenIcon = extras.getParcelable(Notification.EXTRA_LARGE_ICON_BIG);

Completed in 420 milliseconds

1234567891011>>