Lines Matching refs:loc
413 Location loc = mLocationManager.getCurrentLocation(); in takeASnapshot() local
414 CameraUtil.setGpsParameters(mCameraSettings, loc); in takeASnapshot()
419 null, null, null, new JpegPictureCallback(loc)); in takeASnapshot()
1203 Location loc = mLocationManager.getCurrentLocation(); in setRecordLocation() local
1204 if (loc != null) { in setRecordLocation()
1205 mMediaRecorder.setLocation((float) loc.getLatitude(), in setRecordLocation()
1206 (float) loc.getLongitude()); in setRecordLocation()
1236 Location loc = mLocationManager.getCurrentLocation(); in generateVideoValues() local
1237 if (loc != null) { in generateVideoValues()
1238 mCurrentVideoValues.put(Video.Media.LATITUDE, loc.getLatitude()); in generateVideoValues()
1239 mCurrentVideoValues.put(Video.Media.LONGITUDE, loc.getLongitude()); in generateVideoValues()
1922 public JpegPictureCallback(Location loc) { in JpegPictureCallback() argument
1923 mLocation = loc; in JpegPictureCallback()
1935 private void storeImage(final byte[] data, Location loc) { in storeImage() argument
1949 getServices().getMediaSaver().addImage(data, title, dateTaken, loc, orientation, exif, in storeImage()