| /frameworks/base/core/java/android/service/wallpaper/ |
| IWallpaperEngine.aidl | 30 int z, in Bundle extras);
|
| /frameworks/base/services/java/com/android/server/location/ |
| LocationProviderInterface.java | 45 int getStatus(Bundle extras); 54 boolean sendExtraCommand(String command, Bundle extras);
|
| MockProvider.java | 93 public int getStatus(Bundle extras) { 95 extras.clear(); 96 extras.putAll(mExtras); 179 public void setStatus(int status, Bundle extras, long updateTime) { 183 if (extras != null) { 184 mExtras.putAll(extras); 214 public boolean sendExtraCommand(String command, Bundle extras) {
|
| /cts/tests/src/android/content/cts/ |
| MockSyncAdapter.java | 80 Bundle extras) throws RemoteException { 84 mExtras = extras; 86 if (null != extras && extras.getBoolean(ContentResolver.SYNC_EXTRAS_INITIALIZE)) {
|
| /cts/tests/tests/content/src/android/content/cts/ |
| ContentResolverSyncTestCase.java | 119 Bundle extras = new Bundle(); local 120 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true); 135 Bundle extras = new Bundle(); local 136 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true); 138 ContentResolver.requestSync(account, authority, extras); 300 fail("did not throw IllegalArgumentException when extras is null."); 310 Bundle extras = new Bundle(); 311 extras.putInt("Integer", 20); 312 extras.putLong("Long", 10l); 313 extras.putBoolean("Boolean", true) [all...] |
| /frameworks/base/location/java/android/location/ |
| ILocationProvider.aidl | 43 int getStatus(out Bundle extras); 50 boolean sendExtraCommand(String command, inout Bundle extras);
|
| /packages/apps/Phone/src/com/android/phone/ |
| InCallScreenShowActivation.java | 52 Bundle extras = intent.getExtras(); local 53 if (DBG && (extras != null)) { 54 Log.d(LOG_TAG, " - has extras: size = " + extras.size()); // forces an unparcel() 55 Log.d(LOG_TAG, " - extras = " + extras);
|
| /frameworks/base/core/java/android/nfc/tech/ |
| NfcA.java | 69 Bundle extras = tag.getTechExtras(TagTechnology.NFC_A); local 70 mSak = extras.getShort(EXTRA_SAK); 71 mAtqa = extras.getByteArray(EXTRA_ATQA);
|
| Ndef.java | 161 Bundle extras = tag.getTechExtras(TagTechnology.NDEF); local 162 if (extras != null) { 163 mMaxNdefSize = extras.getInt(EXTRA_NDEF_MAXLENGTH); 164 mCardState = extras.getInt(EXTRA_NDEF_CARDSTATE); 165 mNdefMsg = extras.getParcelable(EXTRA_NDEF_MSG); 166 mNdefType = extras.getInt(EXTRA_NDEF_TYPE); 168 throw new NullPointerException("NDEF tech extras are null.");
|
| /frameworks/base/test-runner/src/android/test/ |
| SyncBaseInstrumentation.java | 48 Bundle extras = new Bundle(); local 49 extras.putBoolean(ContentResolver.SYNC_EXTRAS_IGNORE_SETTINGS, true); 52 ContentResolver.requestSync(account, authority, extras);
|
| /packages/apps/Contacts/src/com/android/contacts/socialwidget/ |
| SocialWidgetConfigureActivity.java | 43 final Bundle extras = getIntent().getExtras(); local 44 if (extras == null) throw new IllegalStateException("Intent extras are null"); 45 final int widgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID,
|
| /packages/apps/Gallery/src/com/android/camera/ |
| PhotoAppWidgetBind.java | 48 final Bundle extras = intent.getExtras(); local 51 extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS); 53 extras.getParcelableArrayList(EXTRA_APPWIDGET_BITMAPS);
|
| /packages/apps/VideoEditor/src/com/android/videoeditor/ |
| OverlayTitleTemplatePicker.java | 67 // Put selected overlay type into extras and finish. 68 final Intent extras = new Intent(); local 71 extras.putExtra(PARAM_OVERLAY_ATTRIBUTES, bundle); 72 setResult(RESULT_OK, extras);
|
| OverlayTitleEditor.java | 129 protected void onActivityResult(int requestCode, int resultCode, Intent extras) { 135 // Get chosen overlay type from extras and then update preview image. 136 final Bundle attributes = extras.getBundleExtra( 154 // Extras to be returned to the caller of this activity. 155 final Intent extras = new Intent(); local 156 extras.putExtra(PARAM_MEDIA_ITEM_ID, 161 extras.putExtra(PARAM_OVERLAY_ID, overlayId); 168 extras.putExtra(PARAM_OVERLAY_ATTRIBUTES, attributes); 170 setResult(RESULT_OK, extras);
|
| TransitionsActivity.java | 126 final Intent extras = new Intent(); local 127 extras.putExtra(PARAM_TRANSITION_TYPE, 129 extras.putExtra(PARAM_AFTER_MEDIA_ITEM_ID, 131 extras.putExtra(PARAM_TRANSITION_ID, 133 extras.putExtra(PARAM_TRANSITION_DURATION, mTransitionDurationMs); 135 setResult(RESULT_OK, extras);
|
| /build/core/ |
| checktree | 93 extras = [] 103 extras.append(file) 106 extras = filter(filter_excludes, extras) 108 for s in extras:
|
| /frameworks/base/nfc-extras/java/com/android/nfc_extras/ |
| NfcAdapterExtras.java | 97 "You must pass a context to your NfcAdapter to use the NFC extras APIs"); 104 NfcAdapterExtras extras = sNfcExtras.get(adapter); local 105 if (extras == null) { 106 extras = new NfcAdapterExtras(adapter); 107 sNfcExtras.put(adapter, extras); 109 return extras; 163 Log.e(TAG, "NFC Adapter Extras dead - attempting to recover"); 224 * Some implementations of NFC Adapter Extras may require applications
|
| /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
| Notepadv2.java | 129 Bundle extras = intent.getExtras(); local 132 String title = extras.getString(NotesDbAdapter.KEY_TITLE); 133 String body = extras.getString(NotesDbAdapter.KEY_BODY); 138 Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID); 140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE); 141 String editBody = extras.getString(NotesDbAdapter.KEY_BODY);
|
| /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
| Notepadv3.java | 129 Bundle extras = intent.getExtras(); local 132 String title = extras.getString(NotesDbAdapter.KEY_TITLE); 133 String body = extras.getString(NotesDbAdapter.KEY_BODY); 138 Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID); 140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE); 141 String editBody = extras.getString(NotesDbAdapter.KEY_BODY);
|
| /frameworks/base/core/java/android/content/ |
| IContentService.aidl | 40 void requestSync(in Account account, String authority, in Bundle extras); 73 void addPeriodicSync(in Account account, String providerName, in Bundle extras, 83 void removePeriodicSync(in Account account, String providerName, in Bundle extras);
|
| /frameworks/base/location/lib/java/com/android/location/provider/ |
| LocationProvider.java | 96 public int getStatus(Bundle extras) { 97 return LocationProvider.this.onGetStatus(extras); 124 public boolean sendExtraCommand(String command, Bundle extras) { 125 return LocationProvider.this.onSendExtraCommand(command, extras); 268 * <p> If extras is non-null, additional status information may be 271 public abstract int onGetStatus(Bundle extras); 336 * @param extras optional arguments for the command (or null). 337 * The provider may optionally fill the extras Bundle with results from the command. 341 public abstract boolean onSendExtraCommand(String command, Bundle extras);
|
| /packages/apps/Contacts/src/com/android/contacts/widget/ |
| PinnedHeaderListDemoActivity.java | 105 Bundle extras = getIntent().getExtras(); local 106 int[] counts = extras.getIntArray("counts"); 107 String[] names = extras.getStringArray("names"); 108 boolean[] showIfEmpty = extras.getBooleanArray("showIfEmpty"); 109 boolean[] hasHeader = extras.getBooleanArray("headers"); 110 int[] delays = extras.getIntArray("delays"); 113 throw new IllegalArgumentException("Missing required extras");
|
| /development/samples/ApiDemos/src/com/example/android/apis/os/ |
| SmsMessageReceiver.java | 34 Bundle extras = intent.getExtras(); local 35 if (extras == null) 38 Object[] pdus = (Object[]) extras.get("pdus");
|
| /development/samples/StackWidget/src/com/example/android/stackwidget/ |
| StackWidgetService.java | 86 Bundle extras = new Bundle(); local 87 extras.putInt(StackWidgetProvider.EXTRA_ITEM, position); 89 fillInIntent.putExtras(extras);
|
| /packages/apps/Mms/src/com/android/mms/ui/ |
| NoConfirmationSendService.java | 51 Bundle extras = intent.getExtras(); local 52 if (extras == null) { 53 ComposeMessageActivity.log("Called to send SMS but no extras"); 58 String message = extras.getString(Intent.EXTRA_TEXT);
|