Searched refs:origId (Results 1 - 4 of 4) sorted by relevance
/packages/apps/Camera/src/com/android/camera/ |
H A D | BitmapManager.java | 100 public Bitmap getThumbnail(ContentResolver cr, long origId, int kind, argument 112 return Video.Thumbnails.getThumbnail(cr, origId, t.getId(), 115 return Images.Thumbnails.getThumbnail(cr, origId, t.getId(),
|
/packages/apps/Gallery/src/com/android/camera/ |
H A D | BitmapManager.java | 138 public Bitmap getThumbnail(ContentResolver cr, long origId, int kind, argument 153 return Video.Thumbnails.getThumbnail(cr, origId, t.getId(), 156 return Images.Thumbnails.getThumbnail(cr, origId, t.getId(),
|
/packages/apps/Gallery3D/src/com/cooliris/cache/ |
H A D | CacheService.java | 462 public static final byte[] queryThumbnail(final Context context, final long thumbId, final long origId, final boolean isVideo, argument 465 return queryThumbnail(context, thumbId, origId, isVideo, thumbnailCache, timestamp); 509 private static final byte[] queryThumbnail(final Context context, final long thumbId, final long origId, final boolean isVideo, argument 520 bitmap = buildThumbnailForId(context, thumbnailCache, thumbId, origId, isVideo, DEFAULT_THUMBNAIL_WIDTH, 523 Log.i(TAG, "Built thumbnail and screennail for " + origId + " in " + (SystemClock.uptimeMillis() - time)); 577 final long origId, final boolean isVideo, final int thumbnailWidth, final int thumbnailHeight, final long timestamp) { 578 if (origId == Shared.INVALID) { 593 MediaStore.Video.Thumbnails.cancelThumbnailRequest(context.getContentResolver(), origId); 595 MediaStore.Images.Thumbnails.cancelThumbnailRequest(context.getContentResolver(), origId); 603 bitmap = MediaStore.Video.Thumbnails.getThumbnail(context.getContentResolver(), origId, 576 buildThumbnailForId(final Context context, final DiskCache thumbnailCache, final long thumbId, final long origId, final boolean isVideo, final int thumbnailWidth, final int thumbnailHeight, final long timestamp) argument 620 writeBitmapToCache(final DiskCache thumbnailCache, final long thumbId, final long origId, final Bitmap bitmap, final int thumbnailWidth, final int thumbnailHeight, final long timestamp) argument [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
H A D | MediaProvider.java | 1171 String origId = uri.getQueryParameter("orig_id"); 1173 if (origId == null) { 1182 .appendPath(origId).build(); 1195 id = Long.parseLong(origId); 1223 if (origId != null) { 1224 qb.appendWhere(column + " = " + origId);
|
Completed in 268 milliseconds