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

12 3 4 5 6 7 8 91011>>

  /frameworks/base/services/java/com/android/server/location/
MockProvider.java 93 public int getStatus(Bundle extras) {
95 extras.clear();
96 extras.putAll(mExtras);
124 public void setStatus(int status, Bundle extras, long updateTime) {
128 if (extras != null) {
129 mExtras.putAll(extras);
159 public boolean sendExtraCommand(String command, Bundle extras) {
  /frameworks/base/core/java/android/content/
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...]
ISyncAdapter.aidl 30 * be specified in extras, which is guaranteed to not be null.
36 * @param extras SyncAdapter-specific parameters
39 in Account account, in Bundle extras);
  /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);
  /packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/
DialogSmsDisplay.java 56 Bundle extras = intent.getExtras(); local
57 if (extras == null) {
60 mFromAddress = extras.getString(SMS_FROM_ADDRESS_EXTRA);
61 mMessage = extras.getString(SMS_MESSAGE_EXTRA);
62 int notificationId = extras.getInt(SMS_NOTIFICATION_ID_EXTRA);
  /frameworks/base/services/java/com/android/server/content/
SyncOperation.java 56 public Bundle extras; field in class:SyncOperation
66 Bundle extras, long delayInMs, long backoff, long delayUntil,
74 this.extras = new Bundle(extras);
98 if (!extras.getBoolean(extraName, false)) {
99 extras.remove(extraName);
109 this.extras = new Bundle(other.extras);
141 if (!useOneLine && !extras.keySet().isEmpty()) {
143 extrasToStringBuilder(extras, sb)
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationProviderBase.java 96 public int getStatus(Bundle extras) {
97 return onGetStatus(extras);
104 public boolean sendExtraCommand(String command, Bundle extras) {
105 return onSendExtraCommand(command, extras);
183 * <p>If extras is non-null, additional status information may be
186 public abstract int onGetStatus(Bundle extras);
204 * @param extras optional arguments for the command (or null).
205 * The provider may optionally fill the extras Bundle with results from the command.
209 public boolean onSendExtraCommand(String command, Bundle extras) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPeriodicSync.java 17 public void __constructor__(Account account, String authority, Bundle extras, long period) throws Exception {
21 setField("extras", extras);
  /frameworks/base/core/java/android/service/wallpaper/
IWallpaperEngine.aidl 30 int z, in 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 124 Bundle extras = new Bundle(); local
125 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
140 Bundle extras = new Bundle(); local
141 extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
143 ContentResolver.requestSync(account, authority, extras);
305 fail("did not throw IllegalArgumentException when extras is null.");
315 Bundle extras = new Bundle();
316 extras.putInt("Integer", 20);
317 extras.putLong("Long", 10l);
318 extras.putBoolean("Boolean", true)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
InCallScreenShowActivation.java 53 Bundle extras = intent.getExtras(); local
54 if (DBG && (extras != null)) {
55 Log.d(LOG_TAG, " - has extras: size = " + extras.size()); // forces an unparcel()
56 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);
  /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 58 final Bundle extras = getIntent().getExtras(); local
59 if (extras == null) throw new IllegalStateException("Intent extras are null");
60 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);
  /frameworks/base/core/java/android/widget/
QuickContactBadge.java 193 @param extras A bundle of extras to populate the contact edit page with if the contact
199 public void assignContactFromEmail(String emailAddress, boolean lazyLookup, Bundle extras) {
201 mExtras = extras;
234 * @param extras A bundle of extras to populate the contact edit page with if the contact
239 public void assignContactFromPhone(String phoneNumber, boolean lazyLookup, Bundle extras) {
241 mExtras = extras;
261 final Bundle extras = (mExtras == null) ? new Bundle() : mExtras; local
266 extras.putString(EXTRA_URI_CONTENT, mContactEmail)
313 Bundle extras = (cookie != null) ? (Bundle) cookie : new Bundle(); local
    [all...]
  /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/samples/AppLimits/src/com/example/android/applimits/
GetRestrictionsReceiver.java 106 Bundle extras = new Bundle(); local
107 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
108 result.setResult(Activity.RESULT_OK, null, extras);
129 Bundle extras = new Bundle(); local
133 extras.putParcelable(Intent.EXTRA_RESTRICTIONS_INTENT, customIntent);
135 extras.putParcelableArrayList(Intent.EXTRA_RESTRICTIONS_LIST, newEntries);
136 result.setResult(Activity.RESULT_OK, null, extras);
  /development/build/
sdk.atree 242 development/sdk/support_source.properties extras/android/support/source.properties
243 development/sdk/support_README.txt extras/android/support/README.txt
244 sdk/files/sdk_files_NOTICE.txt extras/android/support/NOTICE.txt
246 ${OUT_DIR}/target/common/obj/PACKAGING/android-support-v4_intermediates/android-support-v4.jar extras/android/support/v4/android-support-v4.jar
247 frameworks/support/v4 extras/android/support/v4/src
248 development/samples/Support4Demos extras/android/support/samples/Support4Demos
249 development/samples/SupportAppNavigation extras/android/support/samples/SupportAppNavigation
251 ${OUT_DIR}/target/common/obj/PACKAGING/android-support-v13_intermediates/android-support-v13.jar extras/android/support/v13/android-support-v13.jar
252 frameworks/support/v13 extras/android/support/v13/src
253 development/samples/Support13Demos extras/android/support/samples/Support13Demo
    [all...]

Completed in 448 milliseconds

12 3 4 5 6 7 8 91011>>