HomeSort by relevance Sort by last modified time
    Searched refs:extras (Results 1 - 25 of 424) 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 32 /** Any extras that parameters that are to be passed to the sync adapter. */
33 public final Bundle extras; field in class:PeriodicSync
48 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) {
51 if (extras == null) {
52 this.extras = new Bundle();
54 this.extras = new Bundle(extras);
68 this.extras = new Bundle(other.extras);
77 public PeriodicSync(Account account, String authority, Bundle extras,
    [all...]
IAnonymousSyncAdapter.aidl 31 * extras, which is guaranteed to not be null.
35 * @param extras SyncAdapter-specific parameters.
38 void startSync(ISyncContext syncContext, in Bundle 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);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
MatrixCursorWithExtra.java 23 public MatrixCursorWithExtra(String[] columnNames, int initialCapacity, Bundle extras) {
26 mExtras = 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/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
DelayedSyncControllerTest.java 56 Bundle extras = new Bundle(); local
57 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
58 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
62 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
63 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
70 Bundle extras = new Bundle(); local
71 assertTrue(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
79 Bundle extras = new Bundle(); local
80 assertFalse(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
93 Bundle extras = new Bundle() local
94 assertFalse(mController.shouldPerformSync(getActivity(), extras, TEST_ACCOUNT)); local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java 29 private final Bundle extras = new Bundle(); field in class:ShadowIntent
55 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);
  /frameworks/base/services/java/com/android/server/content/
SyncOperation.java 67 public Bundle extras; field in class:SyncOperation
87 Bundle extras, long runTimeFromNow, long flexTime, long backoff,
96 this.extras = new Bundle(extras);
97 cleanBundle(this.extras);
101 // Checks the extras bundle. Must occur after we set the internal bundle.
104 if (!this.extras.getBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, false)) {
105 this.extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
111 this.extras.remove(ContentResolver.SYNC_EXTRAS_EXPEDITED);
128 this.extras = new Bundle(other.extras)
    [all...]
  /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);

Completed in 857 milliseconds

1 2 3 4 5 6 7 8 91011>>