Lines Matching refs:l
70 int height, int orientation, ExifInterface exif, OnMediaSavedListener l) { in addImage() argument
71 addImage(data, title, date, loc, width, height, orientation, exif, l, in addImage()
77 int height, int orientation, ExifInterface exif, OnMediaSavedListener l, in addImage() argument
85 width, height, orientation, mimeType, exif, mContentResolver, l); in addImage()
96 ExifInterface exif, OnMediaSavedListener l) { in addImage() argument
99 addImage(data, title, date, loc, 0, 0, orientation, exif, l, in addImage()
104 int orientation, ExifInterface exif, OnMediaSavedListener l) { in addImage() argument
105 addImage(data, title, System.currentTimeMillis(), loc, width, height, orientation, exif, l, in addImage()
110 public void addVideo(Uri uri, ContentValues values, OnMediaSavedListener l) { in addVideo() argument
112 new VideoSaveTask(uri, values, l, mContentResolver).execute(); in addVideo()
116 public void setQueueListener(QueueListener l) { in setQueueListener() argument
117 mQueueListener = l; in setQueueListener()
118 if (l == null) { in setQueueListener()
121 l.onQueueStatus(isQueueFull()); in setQueueListener()
209 public VideoSaveTask(Uri u, ContentValues values, OnMediaSavedListener l, in VideoSaveTask() argument
213 this.listener = l; in VideoSaveTask()