/frameworks/base/core/java/android/content/ |
SyncActivityTooManyDeletes.java | 50 Bundle extras = getIntent().getExtras(); local 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(); local 118 extras.putBoolean(ContentResolver.SYNC_EXTRAS_OVERRIDE_TOO_MANY_DELETIONS, true); 119 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true); 120 extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true) 126 Bundle extras = new Bundle(); local [all...] |
PeriodicSync.java | 33 /** Any extras that parameters that are to be passed to the sync adapter. */ 34 public final Bundle extras; field in class:PeriodicSync 39 public PeriodicSync(Account account, String authority, Bundle extras, long period) { 42 this.extras = new Bundle(extras); 53 dest.writeBundle(extras); 82 && SyncStorageEngine.equals(extras, other.extras);
|
SyncOperation.java | 33 public Bundle extras; field in class:SyncOperation 42 public SyncOperation(Account account, int userId, int source, String authority, Bundle extras, 49 this.extras = new Bundle(extras); 73 if (!extras.getBoolean(extraName, false)) { 74 extras.remove(extraName); 83 this.extras = new Bundle(other.extras); 108 if (!useOneLine && !extras.keySet().isEmpty()) { 110 extrasToStringBuilder(extras, sb) [all...] |
IIntentReceiver.aidl | 31 String data, in Bundle extras, boolean ordered, boolean sticky);
|
AbstractThreadedSyncAdapter.java | 151 Bundle extras) { 161 && extras != null 162 && extras.getBoolean(ContentResolver.SYNC_EXTRAS_INITIALIZE, false)) { 171 syncContextClient, authority, account, extras); 209 Bundle extras = new Bundle(); local 210 extras.putBoolean(ContentResolver.SYNC_EXTRAS_INITIALIZE, true); 211 startSync(null, authority, account, extras); 228 Account account, Bundle extras) { 233 mExtras = extras; 290 * be specified in extras, which is guaranteed to not be null. Invocation [all...] |
/frameworks/base/core/java/android/appwidget/ |
AppWidgetProvider.java | 29 * with the received extras. 62 Bundle extras = intent.getExtras(); local 63 if (extras != null) { 64 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS); 71 Bundle extras = intent.getExtras(); local 72 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID)) { 73 final int appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID); 78 Bundle extras = intent.getExtras(); local 79 if (extras != null && extras.containsKey(AppWidgetManager.EXTRA_APPWIDGET_ID [all...] |
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
ContentActivity.java | 18 Bundle extras = getIntent().getExtras(); local 19 if (extras != null) { 22 mThemeId = extras.getInt("theme"); 34 if (extras != null) { 36 int category = extras.getInt("category"); 37 int position = extras.getInt("position");
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaPlayerSurfaceTest.java | 31 Bundle extras = new Bundle(); local 33 MediaPlayerSurfaceStubActivity.class, extras);
|
/cts/tests/tests/graphics/src/android/opengl/cts/ |
CompressedTextureTest.java | 31 Bundle extras = new Bundle(); local 32 extras.putString("TextureFormat", format); 34 CompressedTextureStubActivity.class, extras);
|
/frameworks/base/core/java/android/nfc/tech/ |
NfcB.java | 65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_B); local 66 mAppData = extras.getByteArray(EXTRA_APPDATA); 67 mProtInfo = extras.getByteArray(EXTRA_PROTINFO);
|
NfcV.java | 66 Bundle extras = tag.getTechExtras(TagTechnology.NFC_V); local 67 mRespFlags = extras.getByte(EXTRA_RESP_FLAGS); 68 mDsfId = extras.getByte(EXTRA_DSFID);
|
IsoDep.java | 73 Bundle extras = tag.getTechExtras(TagTechnology.ISO_DEP); local 74 if (extras != null) { 75 mHiLayerResponse = extras.getByteArray(EXTRA_HI_LAYER_RESP); 76 mHistBytes = extras.getByteArray(EXTRA_HIST_BYTES);
|
NfcF.java | 69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_F); local 70 if (extras != null) { 71 mSystemCode = extras.getByteArray(EXTRA_SC); 72 mManufacturer = extras.getByteArray(EXTRA_PMM);
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
AlbumPicker.java | 34 Bundle extras = intent.getExtras(); local 35 Bundle data = extras == null ? new Bundle() : new Bundle(extras);
|
DialogPicker.java | 33 Bundle extras = intent.getExtras(); local 34 Bundle data = extras == null ? new Bundle() : new Bundle(extras);
|
/frameworks/base/location/java/android/location/ |
ILocationListener.aidl | 29 void onStatusChanged(String provider, int status, in Bundle extras);
|
LocationListener.java | 59 * @param extras an optional Bundle which will contain provider specific 62 * <p> A number of common key/value pairs for the extras Bundle are listed 70 void onStatusChanged(String provider, int status, Bundle extras);
|
/packages/apps/Mms/src/com/android/mms/ui/ |
NoConfirmationSendService.java | 55 Bundle extras = intent.getExtras(); local 56 if (extras == null) { 57 ComposeMessageActivity.log("Called to send SMS but no extras"); 61 String message = extras.getString(Intent.EXTRA_TEXT); 70 if (extras.getBoolean("showUI", false)) {
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
JsonBackedSuggestionExtras.java | 45 public JsonBackedSuggestionExtras(SuggestionExtras extras) throws JSONException { 47 mColumns = extras.getExtraColumnNames(); 48 for (String column : extras.getExtraColumnNames()) { 49 String value = extras.getExtra(column);
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
UsbReceiver.java | 35 Bundle extras = intent.getExtras(); local 36 boolean connected = extras.getBoolean(UsbManager.USB_CONFIGURED); 37 boolean mtpEnabled = extras.getBoolean(UsbManager.USB_FUNCTION_MTP); 38 boolean ptpEnabled = extras.getBoolean(UsbManager.USB_FUNCTION_PTP);
|
/system/extras/tests/iptables/qtaguid/ |
Android.mk | 25 LOCAL_C_INCLUDES += system/extras/tests/include
|
/system/extras/tests/wifi/stress/ |
Android.mk | 26 LOCAL_C_INCLUDES += system/extras/tests/include \
|
/packages/apps/Phone/tests/src/com/android/phone/tests/ |
OtaspTestActivity.java | 54 Bundle extras = intent.getExtras(); local 55 if (extras != null) { 56 Log.i(LOG_TAG, " - has extras: size = " + extras.size()); // forces an unparcel() 57 Log.i(LOG_TAG, " - extras = " + extras); 124 Bundle extras = intent.getExtras(); local 125 if (extras != null) Log.i(LOG_TAG, " - intent extras = " + extras); 244 Bundle extras = performProvisioningIntent.getExtras(); local [all...] |
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
NoteEdit.java | 44 Bundle extras = getIntent().getExtras(); local 45 if (extras != null) { 46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); 47 String body = extras.getString(NotesDbAdapter.KEY_BODY); 48 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
NoteEdit.java | 44 Bundle extras = getIntent().getExtras(); local 45 if (extras != null) { 46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); 47 String body = extras.getString(NotesDbAdapter.KEY_BODY); 48 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
|