Searched refs:extras (Results 251 - 275 of 341) sorted by relevance

<<11121314

/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java542 public Bundle call(String method, String arg, Bundle extras) { argument
543 Bundle bundle = super.call(method, arg, extras);
565 extras.getParcelableArrayList(AUTHORITY + ".extra.uriPermissions");
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountsDbTest.java183 Map<String, String> extras = mAccountsDb.findUserExtrasForAccount(account);
184 assertEquals(1, extras.size());
185 assertEquals(extraValue, extras.get(extraKey));
192 // Delete account and verify that extras cascade removed
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiBackupRestore.java696 Map<String, String> extras =
699 String configKey = extras.get(
710 Integer.parseInt(extras.get(
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationManagerCompat.java66 * Notification extras key: if set to true, the posted notification should use
285 Bundle extras = NotificationCompat.getExtras(notification);
286 return extras != null && extras.getBoolean(EXTRA_USE_SIDE_CHANNEL);
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DEmojiCompat.java79 * Key in {@link EditorInfo#extras} that represents the emoji metadata version used by the
90 * Key in {@link EditorInfo#extras} that represents {@link
689 if (isInitialized() && outAttrs != null && outAttrs.extras != null) {
1029 outAttrs.extras.putInt(EDITOR_INFO_METAVERSION_KEY, mMetadataRepo.getMetadataVersion());
1030 outAttrs.extras.putBoolean(EDITOR_INFO_REPLACE_ALL_KEY, mEmojiCompat.mReplaceAll);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRegisteredMediaRouteProvider.java584 Bundle extras = new Bundle();
585 extras.putInt(CLIENT_DATA_UNSELECT_REASON, reason);
587 mNextRequestId++, controllerId, null, extras);
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java181 // extras that allow any preference activity to be launched as part of a wizard
426 public Bundle extras; field in class:PreferenceActivity.Header
506 dest.writeBundle(extras);
525 extras = in.readBundle();
1344 if (cur.extras != null && cur.extras.equals(oh.extras)) {
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java665 Bundle extras) {
667 dispatchSessionFinished(returnCode, msg, extras);
1160 private void dispatchSessionFinished(int returnCode, String msg, Bundle extras) { argument
1166 mRemoteObserver.onPackageInstalled(mPackageName, returnCode, msg, extras);
1174 final boolean isNewInstall = extras == null || !extras.getBoolean(Intent.EXTRA_REPLACING);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java62 * You must supply the following extras:
72 * The system will respond with an onActivityResult call with the following extras in
104 * You must supply the following extras:
125 * The system will respond with an onActivityResult call with the following extras in
153 * The intent will contain the following extras:
255 * installed. It will be added to the extras object on the {@link android.content.Intent}
290 * The intent will contain the following extras:
307 * Sent when the custom extras for an AppWidget change.
363 * <p>The intent will contain the following extras:
398 * <p>The intent will contain the following extras
1193 requestPinAppWidget(@onNull ComponentName provider, @Nullable Bundle extras, @Nullable PendingIntent successCallback) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java478 @Nullable Bundle extras) throws RemoteException {
483 return mContentProvider.call(mPackageName, method, arg, extras);
477 call(@onNull String method, @Nullable String arg, @Nullable Bundle extras) argument
H A DContentProvider.java399 String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras) {
400 Bundle.setDefusable(extras, true);
403 return ContentProvider.this.call(method, arg, extras);
1107 Bundle extras = new Bundle();
1108 c.setExtras(extras);
1115 extras.putStringArray(ContentResolver.EXTRA_HONORED_ARGS, new String[] {
1120 extras.putInt(ContentResolver.EXTRA_TOTAL_COUNT, recordsetSize);
1965 * @param extras provider-defined Bundle argument. May be {@code null}.
1970 @Nullable Bundle extras) {
398 call( String callingPkg, String method, @Nullable String arg, @Nullable Bundle extras) argument
1969 call(@onNull String method, @Nullable String arg, @Nullable Bundle extras) argument
H A DIntent.java160 * <li> <p><b>extras</b> -- This is a {@link Bundle} of any additional information.
719 * The extras can contain type specific data to pass through to the editing/creating
741 * extras: SHORTCUT_INTENT (value: Intent), SHORTCUT_NAME (value: String),
1173 * Optional standard extras, which may be interpreted by some recipients as
1217 * Optional standard extras, which may be interpreted by some recipients as
1650 * not be created, in particular when Intent extras are supplied through the
2079 * <p>May include the following extras:
2095 * <p>May include the following extras:
2218 * <p>Includes the following extras:
2230 * <p>Includes the following extras
8593 putExtras(@onNull Bundle extras) argument
8620 replaceExtras(@onNull Bundle extras) argument
9147 toShortString(boolean secure, boolean comp, boolean extras, boolean clip) argument
9154 toShortString(StringBuilder b, boolean secure, boolean comp, boolean extras, boolean clip) argument
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvInputInfo.java262 boolean isConnectedToHdmiSwitch, String parentId, Bundle extras) {
278 mExtras = extras;
379 * Returns domain-specific extras associated with this TV input.
858 * Sets domain-specific extras associated with this TV input.
860 * @param extras Domain-specific extras associated with this TV input. Keys <em>must</em> be
865 public Builder setExtras(Bundle extras) { argument
866 this.mExtras = extras;
259 TvInputInfo(ResolveInfo service, String id, int type, boolean isHardwareInput, CharSequence label, int labelResId, Icon icon, Icon iconStandby, Icon iconDisconnected, String setupActivity, boolean canRecord, int tunerCount, HdmiDeviceInfo hdmiDeviceInfo, boolean isConnectedToHdmiSwitch, String parentId, Bundle extras) argument
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusionEngine.java275 public void onStatusChanged(String provider, int status, Bundle extras) { } argument
/frameworks/base/services/core/java/com/android/server/am/
H A DPreBootBroadcaster.java115 public void performReceive(Intent intent, int resultCode, String data, Bundle extras, argument
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java433 if (notification.extras != null && notification.extras.size() > 0) {
434 pw.println(prefix + "extras={");
435 for (String key : notification.extras.keySet()) {
437 Object val = notification.extras.get(key);
H A DNotificationUsageStats.java450 final Set<String> names = n.extras.keySet();
467 !TextUtils.isEmpty(n.extras.getCharSequence(Notification.EXTRA_TITLE))) {
471 !TextUtils.isEmpty(n.extras.getCharSequence(Notification.EXTRA_TEXT))) {
475 !TextUtils.isEmpty(n.extras.getCharSequence(Notification.EXTRA_SUB_TEXT))) {
479 !TextUtils.isEmpty(n.extras.getCharSequence(Notification.EXTRA_INFO_TEXT))) {
/frameworks/base/services/core/java/com/android/server/twilight/
H A DTwilightService.java265 public void onStatusChanged(String provider, int status, Bundle extras) { argument
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
H A DPlayerSession.java165 public void onError(int type, int extra, Bundle extras, Throwable error) { argument
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DLocationStatsAggregator.java233 public void onStatusChanged(String provider, int status, Bundle extras) { }
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiBackupRestoreTest.java760 Map<String, String> extras = new HashMap<>();
761 extras.put(SupplicantStaNetworkHal.ID_STRING_KEY_CONFIG_KEY, configuration.configKey());
762 extras.put(SupplicantStaNetworkHal.ID_STRING_KEY_CREATOR_UID,
764 String idString = "\"" + SupplicantStaNetworkHal.createNetworkExtra(extras) + "\"";
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DNotificationCompat.java63 Bundle extras = getExtras(notification);
64 if (extras != null) {
66 Object tokenInner = extras.getParcelable(EXTRA_MEDIA_SESSION);
71 IBinder tokenInner = BundleCompat.getBinder(extras, EXTRA_MEDIA_SESSION);
/frameworks/base/core/java/android/app/
H A DLoadedApk.java1194 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
1208 rd.performReceive(intent, resultCode, data, extras,
1219 if (extras != null) {
1220 extras.setAllowFds(false);
1222 mgr.finishReceiver(this, resultCode, data, extras, false, intent.getFlags());
1372 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
1373 final Args args = new Args(intent, resultCode, data, extras, ordered,
1193 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
1371 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java945 public boolean callStatusChangedLocked(String provider, int status, Bundle extras) { argument
951 mListener.onStatusChanged(provider, status, extras);
961 statusChanged.putExtras(new Bundle(extras));
2358 public boolean sendExtraCommand(String provider, String command, Bundle extras) { argument
2376 return p.sendExtraCommand(command, extras);
2621 Bundle extras = new Bundle();
2622 int status = p.getStatus(extras);
2687 if (!receiver.callStatusChangedLocked(provider, status, extras)) {
2998 public void setTestProviderStatus(String provider, int status, Bundle extras, long updateTime, argument
3009 mockProvider.setStatus(status, extras, updateTim
[all...]
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java312 Bundle extras = data != null ? data.getExtras() : null;
314 + ", resCode=" + resultCode + ", extras=" + extras + ")");

Completed in 869 milliseconds

<<11121314