Searched defs:extras (Results 26 - 50 of 133) sorted by relevance

123456

/frameworks/base/services/core/java/com/android/server/content/
H A DSyncQueue.java78 op.extras,
97 op.extras,
226 * @param extras option bundle to include to further specify which operation to remove. If this
229 public void remove(final SyncStorageEngine.EndPoint info, Bundle extras) { argument
238 if (extras != null
240 syncOperation.extras,
241 extras,
/frameworks/base/services/core/java/com/android/server/location/
H A DPassiveProvider.java81 public int getStatus(Bundle extras) { argument
111 public boolean sendExtraCommand(String command, Bundle extras) { argument
H A DGeofenceManager.java399 public void onStatusChanged(String provider, int status, Bundle extras) { } argument
H A DLocationProviderProxy.java245 public int getStatus(Bundle extras) { argument
250 return service.getStatus(extras);
277 public boolean sendExtraCommand(String command, Bundle extras) { argument
282 return service.sendExtraCommand(command, extras);
H A DMockProvider.java92 public int getStatus(Bundle extras) { argument
94 extras.clear();
95 extras.putAll(mExtras);
123 public void setStatus(int status, Bundle extras, long updateTime) { argument
127 if (extras != null) {
128 mExtras.putAll(extras);
158 public boolean sendExtraCommand(String command, Bundle extras) { argument
/frameworks/support/v4/api21/android/support/v4/media/
H A DMediaDescriptionCompatApi21.java92 public static void setExtras(Object builderObj, Bundle extras) { argument
93 ((MediaDescription.Builder)builderObj).setExtras(extras);
/frameworks/support/v4/donut/android/support/v4/app/
H A DNotificationCompatBase.java33 Bundle extras, RemoteInputCompatBase.RemoteInput[] remoteInputs);
32 build(int icon, CharSequence title, PendingIntent actionIntent, Bundle extras, RemoteInputCompatBase.RemoteInput[] remoteInputs) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DRemoteInput.java44 boolean allowFreeFormInput, Bundle extras) {
49 this.mExtras = extras;
151 * <p>Values within the Bundle will replace existing extras values in this Builder.
155 public Builder addExtras(Bundle extras) { argument
156 if (extras != null) {
157 mExtras.putAll(extras);
267 Bundle extras) {
268 return new RemoteInput(resultKey, label, choices, allowFreeFormInput, extras);
43 RemoteInput(String resultKey, CharSequence label, CharSequence[] choices, boolean allowFreeFormInput, Bundle extras) argument
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaSessionStatus.java49 private static final String KEY_EXTRAS = "extras";
119 * Gets a bundle of extras for this status object.
120 * The extras will be ignored by the media router but they may be used
136 result.append(", extras=").append(getExtras());
228 * Sets a bundle of extras for this status object.
229 * The extras will be ignored by the media router but they may be used
232 public Builder setExtras(Bundle extras) { argument
233 mBundle.putBundle(KEY_EXTRAS, extras);
/frameworks/base/core/java/android/app/
H A DRemoteInput.java80 int flags, Bundle extras) {
85 this.mExtras = extras;
194 * <p>Values within the Bundle will replace existing extras values in this Builder.
198 public Builder addExtras(Bundle extras) { argument
199 if (extras != null) {
200 mExtras.putAll(extras);
79 RemoteInput(String resultKey, CharSequence label, CharSequence[] choices, int flags, Bundle extras) argument
H A DVoiceInteractor.java235 * @param extras Additional optional information.
237 public ConfirmationRequest(CharSequence prompt, Bundle extras) { argument
239 mExtras = extras;
265 * @param extras Additional optional information.
267 public CompleteVoiceRequest(CharSequence message, Bundle extras) { argument
269 mExtras = extras;
298 * @param extras Additional optional information.
300 public AbortVoiceRequest(CharSequence message, Bundle extras) { argument
302 mExtras = extras;
328 * The command will determine how the properties in extras ar
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java389 public Bundle call(String method, String arg, Bundle extras) throws RemoteException { argument
392 return mContentProvider.call(mPackageName, method, arg, extras);
H A DIContentProvider.java59 public Bundle call(String callingPkg, String method, String arg, Bundle extras) argument
H A DIntentSender.java97 * @param resultExtras The final extras collected by a broadcast.
118 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
122 mResultExtras = extras;
117 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java70 * @param extras additional details that can be used to interpret the
74 long length, Bundle extras) {
85 mExtras = extras;
73 AssetFileDescriptor(ParcelFileDescriptor fd, long startOffset, long length, Bundle extras) argument
/frameworks/base/core/java/android/database/
H A DCursor.java463 * @param extras extra values, or {@link android.os.Bundle#EMPTY Bundle.EMPTY}.
468 Bundle respond(Bundle extras); argument
H A DCursorWrapper.java189 public Bundle respond(Bundle extras) { argument
190 return mCursor.respond(extras);
/frameworks/base/core/java/android/nfc/
H A DNfcActivityManager.java207 Bundle extras) {
214 state.readerModeExtras = extras;
219 setReaderMode(token, flags, extras);
240 public void setReaderMode(Binder token, int flags, Bundle extras) { argument
243 NfcAdapter.sService.setReaderMode(token, this, flags, extras);
206 enableReaderMode(Activity activity, ReaderCallback callback, int flags, Bundle extras) argument
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java320 * return the complete contents. To return a Cursor with extras, you need to
620 public Bundle call(String method, String arg, Bundle extras) { argument
623 return super.call(method, arg, extras);
627 final Uri documentUri = extras.getParcelable(DocumentsContract.EXTRA_URI);
642 final String mimeType = extras.getString(Document.COLUMN_MIME_TYPE);
643 final String displayName = extras.getString(Document.COLUMN_DISPLAY_NAME);
656 final String displayName = extras.getString(Document.COLUMN_DISPLAY_NAME);
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java327 public Bundle extras; field in class:EditorInfo
382 pw.println(prefix + "extras=" + extras);
405 dest.writeBundle(extras);
428 res.extras = source.readBundle();
/frameworks/base/core/java/android/widget/
H A DQuickContactBadge.java209 @param extras A bundle of extras to populate the contact edit page with if the contact
215 public void assignContactFromEmail(String emailAddress, boolean lazyLookup, Bundle extras) { argument
217 mExtras = extras;
250 * @param extras A bundle of extras to populate the contact edit page with if the contact
255 public void assignContactFromPhone(String phoneNumber, boolean lazyLookup, Bundle extras) { argument
257 mExtras = extras;
287 final Bundle extras = (mExtras == null) ? new Bundle() : mExtras;
292 extras
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java93 int z, Bundle extras, boolean sync) {
92 dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java468 * @param extras Any extras about the browser service.
470 public BrowserRoot(@NonNull String rootId, @Nullable Bundle extras) { argument
476 mExtras = extras;
487 * Gets any extras about the brwoser service.
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusionEngine.java275 public void onStatusChanged(String provider, int status, Bundle extras) { } argument
/frameworks/base/services/core/java/com/android/server/job/
H A DJobStore.java243 private static final String XML_TAG_EXTRAS = "extras";
341 private void writeBundleToXml(PersistableBundle extras, XmlSerializer out) argument
344 extras.saveToXml(out);
596 // Read out extras Bundle.
602 Slog.d(TAG, "Error reading extras, skipping.");
607 PersistableBundle extras = PersistableBundle.restoreFromXml(parser);
608 jobBuilder.setExtras(extras);
609 parser.nextTag(); // Consume </extras>

Completed in 460 milliseconds

123456