Searched refs:extras (Results 76 - 100 of 113) sorted by relevance

12345

/frameworks/base/core/java/android/app/
H A DLoadedApk.java674 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
682 rd.performReceive(intent, resultCode, data, extras,
693 if (extras != null) {
694 extras.setAllowFds(false);
696 mgr.finishReceiver(this, resultCode, data, extras, false);
834 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
840 Args args = new Args(intent, resultCode, data, extras, ordered,
673 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
833 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DLauncherActivity.java71 public Bundle extras; field in class:LauncherActivity.ListItem
124 if (item.extras != null) {
125 intent.putExtras(item.extras);
H A DIApplicationThread.java68 int resultCode, String data, Bundle extras, boolean sync,
109 int resultCode, String data, Bundle extras, boolean ordered,
67 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser) argument
108 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DNotification.java440 private Bundle extras; field in class:Notification
593 extras = parcel.readBundle();
654 if (this.extras != null) {
655 that.extras = new Bundle(this.extras);
748 if (extras != null) {
750 extras.writeToParcel(parcel, 0);
920 * available in the <a href="{@docRoot}tools/extras/support-library.html">Android Support
1373 * @see Notification#extras
1616 n.extras
[all...]
H A DPendingIntent.java119 * extras change, and don't care that any entities that received your
121 * extras even if they are not explicitly given to it.
158 * @param resultExtras The final extras collected by a broadcast.
179 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
183 mResultExtras = extras;
474 * arguments given to the service will come from the extras of the Intent.
178 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
H A DWallpaperManager.java744 * @param extras Optional additional information for the command, or null.
747 int x, int y, int z, Bundle extras) {
751 windowToken, action, x, y, z, extras, false);
746 sendWallpaperCommand(IBinder windowToken, String action, int x, int y, int z, Bundle extras) argument
/frameworks/base/core/java/android/content/
H A DContentService.java300 public void requestSync(Account account, String authority, Bundle extras) { argument
301 ContentResolver.validateSyncExtrasBundle(extras);
310 syncManager.scheduleSync(account, userId, authority, extras, 0 /* no delay */,
393 public void addPeriodicSync(Account account, String authority, Bundle extras, argument
402 account, userId, authority, extras, pollFrequency);
408 public void removePeriodicSync(Account account, String authority, Bundle extras) { argument
416 extras);
H A DContentProvider.java255 public Bundle call(String method, String arg, Bundle extras) { argument
256 return ContentProvider.this.call(method, arg, extras);
1096 * @param extras provider-defined Bundle argument. May be null.
1100 public Bundle call(String method, String arg, Bundle extras) { argument
H A DIntent.java135 * <li> <p><b>extras</b> -- This is a {@link Bundle} of any additional information.
652 * The extras can contain type specific data to pass through to the editing/creating
673 * extras: SHORTCUT_INTENT (value: Intent), SHORTCUT_NAME (value: String),
1012 * Optional standard extras, which may be interpreted by some recipients as
1050 * Optional standard extras, which may be interpreted by some recipients as
1511 * <p>May include the following extras:
1527 * <p>May include the following extras:
1698 * <p>Includes the following extras:
1723 * <p>Inclues the following extras:
3837 if (uri.regionMatches(i, "extras(",
5786 putExtras(Bundle extras) argument
5813 replaceExtras(Bundle extras) argument
6386 toShortString(boolean secure, boolean comp, boolean extras, boolean clip) argument
6393 toShortString(StringBuilder b, boolean secure, boolean comp, boolean extras, boolean clip) argument
[all...]
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java383 Bundle extras = intent.getExtras();
394 if (extras == null) {
395 extras = uriExtras;
397 uriExtras.putAll(extras);
398 extras = uriExtras;
400 intent.replaceExtras(extras);
1285 public void performReceive(Intent intent, int resultCode, String data, Bundle extras, argument
1289 if (extras != null) line = line + ", extras: " + extras;
[all...]
/frameworks/base/services/java/com/android/server/location/
H A DLocationBasedCountryDetector.java175 public void onStatusChanged(String provider, int status, Bundle extras) {
H A DGeofenceManager.java384 public void onStatusChanged(String provider, int status, Bundle extras) { } argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java176 int z, Bundle extras, boolean sync) {
175 sendWallpaperCommand(IBinder window, String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSMSDispatcher.java449 Bundle extras = getResultExtras(false);
450 if (extras == null) {
451 Log.e(TAG, "SCP results error: missing extras");
454 String sender = extras.getString("sender");
460 = extras.getParcelableArrayList("results");
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java111 public Bundle extras; field in class:GpsNetInitiatedHandler.GpsNiNotification
118 Bundle extras; field in class:GpsNetInitiatedHandler.GpsNiResponse
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java172 // extras that allow any preference activity to be launched as part of a wizard
390 public Bundle extras; field in class:PreferenceActivity.Header
470 dest.writeBundle(extras);
489 extras = in.readBundle();
1210 if (cur.extras != null && cur.extras.equals(oh.extras)) {
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java493 public boolean callStatusChangedLocked(String provider, int status, Bundle extras) { argument
499 mListener.onStatusChanged(provider, status, extras);
509 statusChanged.putExtras(extras);
1414 public boolean sendExtraCommand(String provider, String command, Bundle extras) { argument
1432 return p.sendExtraCommand(command, extras);
1624 Bundle extras = new Bundle();
1625 int status = p.getStatus(extras);
1679 if (!receiver.callStatusChangedLocked(provider, status, extras)) {
1973 public void setTestProviderStatus(String provider, int status, Bundle extras, long updateTime) { argument
1980 mockProvider.setStatus(status, extras, updateTim
[all...]
H A DTwilightService.java554 public void onStatusChanged(String provider, int status, Bundle extras) {
569 public void onStatusChanged(String provider, int status, Bundle extras) {
/frameworks/base/location/java/android/location/
H A DLocation.java110 * has no bearing, altitude, speed, accuracy or extras.
819 public void setExtras(Bundle extras) { argument
820 mExtras = (extras == null) ? null : new Bundle(extras);
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java260 Bundle extras = data != null ? data.getExtras() : null;
262 + ", resCode=" + resultCode + ", extras=" + extras + ")");
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java710 Bundle extras = new Bundle(1);
711 extras.putInt(Intent.EXTRA_UID, res.uid);
747 extras, null, null, firstUsers);
750 extras.putBoolean(Intent.EXTRA_REPLACING, true);
754 extras, null, null, updateUsers);
758 extras, null, null, updateUsers);
5371 Bundle extras, String targetPkg, IIntentReceiver finishedReceiver,
5382 if (extras != null) {
5383 intent.putExtras(extras);
5566 Bundle extras
5370 sendPackageBroadcast(String action, String pkg, Bundle extras, String targetPkg, IIntentReceiver finishedReceiver, int[] userIds) argument
[all...]
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusionEngine.java269 public void onStatusChanged(String provider, int status, Bundle extras) { } argument
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java407 int z, Bundle extras, boolean sync) {
413 action, x, y, z, extras, sync);
406 sendWallpaperCommand(IBinder window, String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A DTrackerService.java335 * @param extras - optional set of extra status messages
337 public void onStatusChanged(String provider, int status, Bundle extras) { argument
/frameworks/base/services/java/com/android/server/am/
H A DBroadcastQueue.java366 Intent intent, int resultCode, String data, Bundle extras,
373 data, extras, ordered, sticky, sendingUser);
375 receiver.performReceive(intent, resultCode, data, extras, ordered,
1047 pw.print(" extras: "); pw.println(bundle.toString());
1078 pw.print(" extras: "); pw.println(bundle.toString());
365 performReceiveLocked(ProcessRecord app, IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument

Completed in 454 milliseconds

12345