Home | History | Annotate | Download | only in content

Lines Matching defs:Bundle

38 import android.os.Bundle;
83 * {@link #requestSync(android.accounts.Account, String, android.os.Bundle)}
188 * @see #openTypedAssetFileDescriptor(Uri, String, Bundle)
189 * @see #openTypedAssetFileDescriptor(Uri, String, Bundle,
1088 @NonNull String mimeType, @Nullable Bundle opts) throws FileNotFoundException {
1124 @NonNull String mimeType, @Nullable Bundle opts,
1428 * @param extras provider-defined Bundle argument. May be null.
1429 * @return a result Bundle, possibly null. Will be null if the ContentProvider
1434 public final @Nullable Bundle call(@NonNull Uri uri, @NonNull String method,
1435 @Nullable String arg, @Nullable Bundle extras) {
1443 final Bundle res = provider.call(mPackageName, method, arg, extras);
1444 Bundle.setDefusable(res, true);
1708 * @see #requestSync(android.accounts.Account, String, android.os.Bundle)
1734 * @see #requestSync(android.accounts.Account, String, android.os.Bundle)
1855 * types may be used in the extras bundle:
1870 * {@link #requestSync(android.accounts.Account, String, android.os.Bundle)}
1873 public void startSync(Uri uri, Bundle extras) {
1888 * types may be used in the extras bundle:
1904 public static void requestSync(Account account, String authority, Bundle extras) {
1909 * @see #requestSync(Account, String, Bundle)
1913 Bundle extras) {
1943 * Check that only values of the following types are in the Bundle:
1954 * @param extras the Bundle to check
1956 public static void validateSyncExtrasBundle(Bundle extras) {
1974 throw new IllegalArgumentException("error unparceling Bundle", exc);
2130 * <p>The bundle for a periodic sync can be queried by applications with the correct
2143 public static void addPeriodicSync(Account account, String authority, Bundle extras,
2168 * @param extras bundle to validate.
2170 public static boolean invalidPeriodicExtras(Bundle extras) {
2193 public static void removePeriodicSync(Account account, String authority, Bundle extras) {
2211 * adapter, frequency, <b>and</b> extras bundle.
2459 * @see #requestSync(Account, String, Bundle)
2519 public void putCache(Uri key, Bundle value) {
2529 public Bundle getCache(Uri key) {
2531 final Bundle bundle = getContentService().getCache(mContext.getPackageName(), key,
2533 if (bundle != null) bundle.setClassLoader(mContext.getClassLoader());
2534 return bundle;