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

12345

/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java128 private static final String TABLE_EXTRAS = "extras";
511 public boolean addAccount(Account account, String password, Bundle extras) { argument
524 return addAccountInternal(accounts, account, password, extras);
531 Bundle extras) {
558 if (extras != null) {
559 for (String key : extras.keySet()) {
560 final String value = extras.getString(key);
530 addAccountInternal(UserAccounts accounts, Account account, String password, Bundle extras) argument
/frameworks/base/services/java/com/android/server/
H A DAppWidgetServiceImpl.java291 Bundle extras = intent.getExtras();
293 || (extras != null && extras.getBoolean(Intent.EXTRA_REPLACING, false))) {
307 Bundle extras = intent.getExtras();
308 if (extras != null && extras.getBoolean(Intent.EXTRA_REPLACING, false)) {
1326 // PendingIntent.getBroadcast will update the extras.
H A DBackupManagerService.java1341 Bundle extras = intent.getExtras();
1354 replacing = extras.getBoolean(Intent.EXTRA_REPLACING, false);
1367 final int uid = extras.getInt(Intent.EXTRA_UID);
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java379 Bundle extras = data.readBundle();
384 resultCode, dataStr, extras, ordered, sticky, sendingUser);
997 int resultCode, String dataStr, Bundle extras, boolean ordered,
1005 data.writeBundle(extras);
996 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityThread.java646 CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras,
648 ReceiverData r = new ReceiverData(intent, resultCode, data, extras,
807 int resultCode, String dataStr, Bundle extras, boolean ordered,
809 receiver.performReceive(intent, resultCode, dataStr, extras, ordered,
645 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser) argument
806 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
/frameworks/base/core/java/android/widget/
H A DTextView.java975 Log.w(LOG_TAG, "Failure reading input extras", e);
977 Log.w(LOG_TAG, "Failure reading input extras", e);
4203 * {@link EditorInfo#extras TextBoxAttribute.extras}
4206 * {@link android.R.styleable#InputExtras <input-extras>} XML tree.
4209 * @see EditorInfo#extras
4216 mEditor.mInputContentType.extras = new Bundle();
4217 getResources().parseBundleExtras(parser, mEditor.mInputContentType.extras);
4221 * Retrieve the input extras currently associated with the text view, which
4224 * @param create If true, the extras wil
[all...]
H A DAbsListView.java6441 final int extras = size - maxViews;
6443 for (int j = 0; j < extras; j++) {
H A DEditor.java3815 Bundle extras; field in class:Editor.InputContentType
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java4238 int extras = DRAW_EXTRAS_NONE;
4240 extras = DRAW_EXTRAS_SELECTION;
4249 screenRect, mVisibleContentRect, getScale(), extras);
4264 nativeDraw(canvas, mVisibleContentRect, mBackgroundColor, extras);
4271 if (extras == DRAW_EXTRAS_CURSOR_RING) {
8697 Rect screenRect, RectF visibleContentRect, float scale, int extras);
8696 nativeCreateDrawGLFunction(int nativeInstance, Rect invScreenRect, Rect screenRect, RectF visibleContentRect, float scale, int extras) argument
/frameworks/base/media/java/android/media/
H A DAudioService.java4603 Bundle extras = intent.getExtras();
4604 if (extras == null) {
4607 if (extras.containsKey(EXTRA_WAKELOCK_ACQUIRED)) {
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7767 String data, Bundle extras, boolean ordered,
7932 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
14226 String data, Bundle extras, boolean ordered,
14254 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
14499 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
14507 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java2640 String action, int x, int y, int z, Bundle extras, boolean sync) {
2654 x, y, z, extras, sync);
2639 sendWindowWallpaperCommandLocked(WindowState window, String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4942 int z, Bundle extras, boolean sync) {
4941 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument

Completed in 543 milliseconds

12345