HomeSort by relevance Sort by last modified time
    Searched refs:extras (Results 1 - 25 of 344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 && syncExtrasEquals(extras, other.extras);
IIntentReceiver.aidl 31 in Bundle extras, boolean ordered, boolean sticky, int sendingUser);
  /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);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 27 private final Bundle extras = new Bundle(); field in class:ShadowIntent
54 extras.putAll(other.extras);
192 extras.putAll(src);
199 extras.putAll(srcShadowIntent.extras);
205 return extras != null ? new Bundle(extras) : null;
210 extras.putInt(key, value);
216 extras.putDouble(key, value)
    [all...]
  /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);
NfcBarcode.java 65 Bundle extras = tag.getTechExtras(TagTechnology.NFC_BARCODE); local
66 if (extras != null) {
67 mType = extras.getInt(EXTRA_BARCODE_TYPE);
69 throw new NullPointerException("NfcBarcode tech extras are null.");
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 32 Bundle extras = intent.getExtras(); local
33 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);
  /frameworks/base/services/java/com/android/server/location/
LocationProviderInterface.java 45 public int getStatus(Bundle extras);
47 public boolean sendExtraCommand(String command, Bundle extras);
  /frameworks/base/location/java/com/android/internal/location/
ILocationProvider.aidl 41 int getStatus(out Bundle extras);
43 boolean sendExtraCommand(String command, inout Bundle extras);
  /packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java 54 Bundle extras = intent.getExtras(); local
55 if (extras == null) {
56 ComposeMessageActivity.log("Called to send SMS but no extras");
60 String message = extras.getString(Intent.EXTRA_TEXT);
69 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/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
CommonDatabaseUtils.java 72 public static void extrasVarArgsToValues(ContentValues values, String... extras) {
73 for (int i = 0; i < extras.length; ) {
74 values.put(extras[i], extras[i + 1]);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpReceiver.java 45 Bundle extras = intent.getExtras(); local
46 boolean connected = extras.getBoolean(UsbManager.USB_CONFIGURED);
47 boolean mtpEnabled = extras.getBoolean(UsbManager.USB_FUNCTION_MTP);
48 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 \

Completed in 587 milliseconds

1 2 3 4 5 6 7 8 91011>>