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

12345

/frameworks/base/location/java/android/location/
H A DLocation.java677 public void setExtras(Bundle extras) { argument
678 mExtras = (extras == null) ? null : new Bundle(extras);
/frameworks/base/services/java/com/android/server/location/
H A DLocationBasedCountryDetector.java173 public void onStatusChanged(String provider, int status, Bundle extras) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java154 int z, Bundle extras, boolean sync) {
153 sendWallpaperCommand(IBinder window, String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/core/java/android/app/
H A DPendingIntent.java90 * extras change, and don't care that any entities that received your
92 * extras even if they are not explicitly given to it.
129 * @param resultExtras The final extras collected by a broadcast.
150 String data, Bundle extras, boolean serialized, boolean sticky) {
154 mResultExtras = extras;
307 * arguments given to the service will come from the extras of the Intent.
149 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky) argument
H A DWallpaperManager.java670 * @param extras Optional additional information for the command, or null.
673 int x, int y, int z, Bundle extras) {
677 windowToken, action, x, y, z, extras, false);
672 sendWallpaperCommand(IBinder windowToken, String action, int x, int y, int z, Bundle extras) argument
H A DApplicationThreadNative.java362 Bundle extras = data.readBundle();
366 resultCode, dataStr, extras, ordered, sticky);
935 int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky)
943 data.writeBundle(extras);
934 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky) argument
H A DActivityThread.java593 CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras,
595 ReceiverData r = new ReceiverData(intent, resultCode, data, extras,
750 int resultCode, String dataStr, Bundle extras, boolean ordered,
752 receiver.performReceive(intent, resultCode, dataStr, extras, ordered, sticky);
592 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync) argument
749 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky) argument
/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.java165 // extras that allow any preference activity to be launched as part of a wizard
383 public Bundle extras; field in class:PreferenceActivity.Header
463 dest.writeBundle(extras);
482 extras = in.readBundle();
1189 if (cur.extras != null && cur.extras.equals(oh.extras)) {
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java335 Bundle extras = intent.getExtras();
346 if (extras == null) {
347 extras = uriExtras;
349 uriExtras.putAll(extras);
350 extras = uriExtras;
352 intent.replaceExtras(extras);
1107 if (ext != null) line = line + ", extras: " + ext;
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java259 Bundle extras = data != null ? data.getExtras() : null;
261 + ", resCode=" + resultCode + ", extras=" + extras + ")");
H A DAccountManagerService.java116 private static final String TABLE_EXTRAS = "extras";
383 public boolean addAccount(Account account, String password, Bundle extras) { argument
395 return addAccountInternal(account, password, extras);
401 private boolean addAccountInternal(Account account, String password, Bundle extras) { argument
428 if (extras != null) {
429 for (String key : extras.keySet()) {
430 final String value = extras.getString(key);
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java374 int z, Bundle extras, boolean sync) {
380 action, x, y, z, extras, sync);
373 sendWallpaperCommand(IBinder window, String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java114 // Locations, status values, and extras for mock providers
264 public boolean callStatusChangedLocked(String provider, int status, Bundle extras) { argument
270 mListener.onStatusChanged(provider, status, extras);
282 statusChanged.putExtras(extras);
1322 public boolean sendExtraCommand(String provider, String command, Bundle extras) { argument
1342 return p.sendExtraCommand(command, extras);
1538 public void onStatusChanged(String provider, int status, Bundle extras) { argument
1787 Bundle extras = new Bundle();
1788 int status = p.getStatus(extras);
1818 if (!receiver.callStatusChangedLocked(provider, status, extras)) {
2191 setTestProviderStatus(String provider, int status, Bundle extras, long updateTime) argument
[all...]
H A DAppWidgetService.java1032 // PendingIntent.getBroadcast will update the extras.
1484 Bundle extras = intent.getExtras();
1485 if (changed || (extras != null &&
1486 extras.getBoolean(Intent.EXTRA_REPLACING, false))) {
1500 Bundle extras = intent.getExtras();
1501 if (extras != null && extras.getBoolean(Intent.EXTRA_REPLACING, false)) {
H A DUiModeManagerService.java264 public void onStatusChanged(String provider, int status, Bundle extras) {
291 public void onStatusChanged(String provider, int status, Bundle extras) {
H A DBackupManagerService.java1279 Bundle extras = intent.getExtras();
1298 replacing = extras.getBoolean(Intent.EXTRA_REPLACING, false);
/frameworks/base/core/java/android/content/
H A DIntent.java134 * <li> <p><b>extras</b> -- This is a {@link Bundle} of any additional information.
649 * The extras can contain type specific data to pass through to the editing/creating
670 * extras: SHORTCUT_INTENT (value: Intent), SHORTCUT_NAME (value: String),
958 * Optional standard extras, which may be interpreted by some recipients as
985 * Optional standard extras, which may be interpreted by some recipients as
1383 * <p>My include the following extras:
1399 * <p>My include the following extras:
1561 * <p>Includes the following extras:
1586 * <p>Inclues the following extras:
3468 if (uri.regionMatches(i, "extras(",
5283 putExtras(Bundle extras) argument
5310 replaceExtras(Bundle extras) argument
5858 toShortString(boolean secure, boolean comp, boolean extras) argument
5865 toShortString(StringBuilder b, boolean secure, boolean comp, boolean extras) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java667 Bundle extras = new Bundle(1);
668 extras.putInt(Intent.EXTRA_UID, res.uid);
671 extras.putBoolean(Intent.EXTRA_REPLACING, true);
675 extras, null, null);
679 extras, null, null);
4732 Bundle extras, String targetPkg, IIntentReceiver finishedReceiver) {
4738 if (extras != null) {
4739 intent.putExtras(extras);
4885 Bundle extras = new Bundle(1);
4886 extras
4731 sendPackageBroadcast(String action, String pkg, Bundle extras, String targetPkg, IIntentReceiver finishedReceiver) argument
[all...]
/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/core/java/android/webkit/
H A DWebView.java4628 int extras = DRAW_EXTRAS_NONE;
4630 extras = DRAW_EXTRAS_FIND;
4632 extras = DRAW_EXTRAS_SELECTION;
4637 extras = DRAW_EXTRAS_CURSOR_RING;
4645 + " extras=" + extras);
4654 viewRectViewport, mVisibleContentRect, getScale(), extras);
4672 extras, false);
4684 if (extras == DRAW_EXTRAS_CURSOR_RING) {
9561 Rect viewRect, RectF visibleRect, float scale, int extras);
9560 nativeGetDrawGLFunction(int nativeInstance, Rect rect, Rect viewRect, RectF visibleRect, float scale, int extras) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioService.java3048 // create a new intent to fill in the extras of the registered PendingIntent
3050 Bundle extras = intent.getExtras();
3051 if (extras != null) {
3052 targetedIntent.putExtras(extras);
/frameworks/base/core/java/android/widget/
H A DTextView.java312 Bundle extras; field in class:TextView.InputContentType
844 Log.w(LOG_TAG, "Failure reading input extras", e);
846 Log.w(LOG_TAG, "Failure reading input extras", e);
3875 * {@link EditorInfo#extras TextBoxAttribute.extras}
3878 * {@link android.R.styleable#InputExtras &lt;input-extras&gt;} XML tree.
3881 * @see EditorInfo#extras
3888 mInputContentType.extras = new Bundle();
3889 getResources().parseBundleExtras(parser, mInputContentType.extras);
3893 * Retrieve the input extras currentl
[all...]
H A DAbsListView.java6003 final int extras = size - maxViews;
6005 for (int j = 0; j < extras; j++) {
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4207 int z, Bundle extras, boolean sync) {
4206 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument

Completed in 860 milliseconds

12345