/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
D | CameraControlPane.java | 254 } catch (CameraAccessException e) { in getRequestBuilder() 255 TLog.e("Unable to build request for camera %s with template %d.", e, in getRequestBuilder() 273 } catch (CameraAccessException e) { in capture() 274 TLog.e("Unable to capture for camera %s.", e, mCurrentCameraId); in capture() 285 } catch (CameraAccessException e) { in repeat() 286 TLog.e("Unable to set repeating request for camera %s.", e, mCurrentCameraId); in repeat() 306 } catch (CameraAccessException e) { in prepareSurface() 307 TLog.e("Unable to prepare surface for camera %s.", e, mCurrentCameraId); in prepareSurface() 308 } catch (IllegalArgumentException e) { in prepareSurface() 309 TLog.e("Bad Surface passed to prepare", e); in prepareSurface() [all …]
|
D | TLog.java | 56 synchronized static public void e(String text, Object... args) { in e() method in TLog 60 android.util.Log.e(TAG, text); in e() 77 synchronized static public void e(String text, Throwable e, Object... args) { in e() argument 78 text = String.format("%s\n%s", text, Log.getStackTraceString(e)); in e() 82 android.util.Log.e(TAG, text); in e()
|
D | CameraOps2.java | 57 } catch (CameraAccessException e) { in CameraOps2() 58 TLog.e("Unable to get camera list: %s", e); in CameraOps2() 108 TLog.e("Camera %s is already open", cameraId); in openCamera() 131 } catch (CameraAccessException e) { in doOpenCamera() 132 TLog.e("Unable to open camera %s.", e, cameraId); in doOpenCamera() 169 } catch (CameraAccessException e) { in getCameraInfo() 170 TLog.e("Unable to get camera characteristics for camera %s.", e, cameraId); in getCameraInfo()
|
D | TestingCamera21.java | 174 TLog.e("Saving a configuration is not yet implemented"); in onOptionsItemSelected() 251 } catch (XmlPullParserException e) { in readConfig() 252 TLog.e("Unable to parse new config.", e); in readConfig() 253 } catch (IOException e) { in readConfig() 254 TLog.e("Unable to read new config.", e); in readConfig()
|
D | CameraInfoDialogFragment.java | 67 } catch (CameraAccessException e) { in onCreateDialog() 68 TLog.e(String.format("Can't get characteristics for camera %s: %s", mCameraId, e)); in onCreateDialog()
|
D | CheckableListAdapter.java | 105 for (String e : elems) { in updateItems() 106 CheckableItem item = new CheckableItem(e, false); in updateItems() 112 if (current.name.equals(e) && current.isChecked) { in updateItems()
|
D | RequestControlPane.java | 215 TLog.e("No camera selected for request"); 231 TLog.e("No camera selected for request"); 245 TLog.e("No target(s) selected for request"); in createRequest() 259 TLog.e("Target not configured for camera"); in createRequest()
|
D | ImageReaderSubPane.java | 206 } catch(IllegalArgumentException e) { in updateFormats() 405 TLog.e("RAW10 viewing not implemented"); in updateImage() 552 } catch (IOException e) { 553 TLog.e("Can't save file:", e); 594 TLog.e("RAW10 saving not implemented"); in saveImage() 618 TLog.e("No camera availble for camera info, not saving DNG (timestamp %d)", in writeDngImage() 624 TLog.e("No result matching raw image found, not saving DNG (timestamp %d)", in writeDngImage() 743 TLog.e("Failed to create directory for pictures/video"); in getOutputImageFile() 790 TLog.e("Unknown image format for saving, using .unknown extension: " + type); in getOutputImageFile()
|
D | ControlPane.java | 163 } catch (NumberFormatException e) { in getAttributeInt() 165 configParser, e); in getAttributeInt()
|
D | TargetControlPane.java | 302 TLog.e("No implementation yet for view type %s", type); in createOutputView()
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/ |
D | CameraOps.java | 149 } catch (CameraAccessException e) { in getDevices() 150 throw new ApiFailureException("Can't query device set", e); in getDevices() 177 } catch (Exception e) { in closeDevice() 178 throw new ApiFailureException("can't close device!", e); in closeDevice() 217 } catch (CameraAccessException e) { in minimalOpenCamera() 218 throw new ApiFailureException("open failure", e); in minimalOpenCamera() 219 } catch (BlockingOpenException e) { in minimalOpenCamera() 220 throw new ApiFailureException("open async failure", e); in minimalOpenCamera() 279 } catch (CameraAccessException e) { in minimalPreviewConfig() 280 throw new ApiFailureException("Error setting up minimal preview", e); in minimalPreviewConfig() [all …]
|
D | TestingCamera2.java | 194 } catch(ApiFailureException e) { in onCreate() 195 logException("Cannot create camera ops!",e); in onCreate() 204 } catch(ApiFailureException e) { in onCreate() 205 logException("CameraOps::getDevices failed!",e); in onCreate() 275 } catch (ApiFailureException e) { in setUpPreview() 276 logException("Can't configure preview surface: ",e); in setUpPreview() 287 } catch (ApiFailureException e) { in onPause() 288 logException("Can't close device: ",e); in onPause() 384 } catch (ApiFailureException e) { in surfaceChanged() 385 logException("Can't start minimal preview: ", e); in surfaceChanged() [all …]
|
D | CameraRecordingStream.java | 232 Log.e(TAG, "setting camera to idle"); in stop() 237 } catch (InterruptedException e) { in stop() 238 throw new RuntimeException("Stop recording failed", e); in stop() 247 } catch (RuntimeException e) { in stop() 249 Log.e(TAG, "Could not create output file"); in stop() 374 Log.e(TAG, "External storage is not mounted!"); in getOutputMediaFileName() 383 Log.e(TAG, "Failed to create directory " + mediaStorageDir.getPath() in getOutputMediaFileName() 480 } catch (IllegalStateException e) { in configureMediaRecorder() 481 Log.v(TAG, "MediaRecorder throws IllegalStateException " + e.toString()); in configureMediaRecorder() 482 } catch (IOException e) { in configureMediaRecorder() [all …]
|
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
D | SnapshotDialogFragment.java | 166 } catch (IOException e) { in saveFile() 167 parent.logE("Unable to save file: " + e.getMessage()); in saveFile() 258 } catch (IOException e) { in updateExif() 259 ((TestingCamera) getActivity()).logE("Unable to extract EXIF: " + e.getMessage()); in updateExif()
|
D | TestingCamera.java | 462 } catch (IOException e) { in surfaceChanged() 1026 } catch (RuntimeException e) { in setUpCamera() 1027 logE("Exception opening camera: " + e.getMessage()); in setUpCamera() 1109 } catch(IOException e) { in setUpCamera() 1110 Log.e(TAG, "Unable to set up preview!"); in setUpCamera() 1718 } catch (Exception e) { in startRecording() 1720 e.printStackTrace(new PrintWriter(writer)); in startRecording() 1731 } catch (Exception e) { in startRecording() 1733 e.printStackTrace(new PrintWriter(writer)); in startRecording() 1779 } catch (RuntimeException e) { in stopRecording() [all …]
|
D | CallbackProcessor.java | 108 } catch (InterruptedException e) { in stop()
|