Home | History | Annotate | Download | only in picasa

Lines Matching defs:extras

55         Bundle extras = new Bundle();
56 extras.putInt(KEY_TYPE, type);
57 extras.putLong(KEY_ID, id);
61 ContentResolver.requestSync(account, PicasaContentProvider.AUTHORITY, extras);
65 // PicasaService.class).putExtras(extras));
106 public static boolean performSync(Context context, Account account, Bundle extras, SyncResult syncResult) {
113 performSyncImpl(context, account, extras, syncResult);
137 private static void performSyncImpl(Context context, Account account, Bundle extras, SyncResult syncResult) {
140 if (extras.getBoolean(ContentResolver.SYNC_EXTRAS_INITIALIZE, false)) {
160 int type = extras.getInt(PicasaService.KEY_TYPE, PicasaService.TYPE_USERS_ALBUMS);
161 long id = extras.getLong(PicasaService.KEY_ID, -1);