Lines Matching refs:log
303 mLogView = (TextView) findViewById(R.id.log); in onCreate()
369 log("onResume: Setting up"); in onResume()
381 log("onPause: Not releasing camera"); in onPause()
388 log("onPause: Releasing camera"); in onPause()
403 log("Camera permission granted"); in onRequestPermissionsResult()
406 log("Camera permission denied, can't do anything"); in onRequestPermissionsResult()
413 log("Recording permission " + permissions[i] + " denied"); in onRequestPermissionsResult()
416 log("Recording permissions granted"); in onRequestPermissionsResult()
456 log("Surface holder available: " + width + " x " + height); in surfaceChanged()
501 log(String.format( in setCameraDisplayOrientation()
564 log("Stopping preview and callbacks to switch resolutions");
574 log("Setting preview size to " + width + "x" + height);
580 log("Restarting preview");
600 log("Setting preview frame rate to " + ((TextView)view).getText());
621 log("Turning on HDR");
624 log("Turning off HDR");
640 log("Starting preview");
645 log("Stopping preview");
663 log("Setting focus mode to " + focusMode);
683 log("Triggering autofocus");
692 log("Cancelling autofocus");
701 log("Autofocus completed: " + (success ? "success" : "failure") );
709 log("Autofocus movement: " + (start ? "starting" : "stopped") );
722 log("Setting flash mode to " + flashMode);
744 log("Setting snapshot size to " + width + " x " + height);
761 log("Taking picture");
780 log("Setting camcorder profile to " + ((TextView)view).getText());
795 log("Setting video record size to " + mVideoRecordSize);
812 log("Setting video record size to " + ((TextView)view).getText());
829 log("Setting video frame rate to " + ((TextView)view).getText());
896 log("Locked camera");
899 log("Unlocked camera");
907 log("Shutter callback received");
914 log("Raw callback received");
921 log("Postview callback received");
928 log("JPEG picture callback received");
947 log("Setting preview format to " +
957 log("Stopping preview and callbacks to switch formats");
988 log("Disabling preview callbacks");
995 log("Enabling preview callbacks");
1009 log("Setting up camera " + mCameraId); in setUpCamera()
1013 log("Opening camera " + mCameraId); in setUpCamera()
1017 log("Requested camera permission"); in setUpCamera()
1057 log("Configuring camera"); in setUpCamera()
1077 log("Video stabilization is supported"); in setUpCamera()
1080 log("Video stabilization not supported"); in setUpCamera()
1085 log("Auto-Exposure locking is supported"); in setUpCamera()
1088 log("Auto-Exposure locking is not supported"); in setUpCamera()
1095 log("Zoom is supported, set max to " + maxZoom); in setUpCamera()
1098 log("Zoom is not supported"); in setUpCamera()
1106 log("Setting preview display"); in setUpCamera()
1120 log("Starting preview" ); in setUpCamera()
1132 log("Closing old camera"); in resetCamera()
1153 log("Setting AF mode to " + mAfModes.get(mAfMode)); in updateAfModes()
1170 log("Setting Flash mode to " + mFlashModes.get(mFlashMode)); in updateFlashModes()
1182 log("Auto-Exposure was " + mParams.getAutoExposureLock());
1184 log("Auto-Exposure is now " + mParams.getAutoExposureLock());
1201 log("Zoom set to " + mZoom + " / " + mParams.getMaxZoom() + " (" +
1225 log("Setting preview size to " + width + " x " + height); in updatePreviewSizes()
1253 log("Setting preview frame rate to " + nameArray[mPreviewFrameRate]); in updatePreviewFrameRate()
1274 log("Setting preview format to " + in updatePreviewFormats()
1298 log("Setting snapshot size to " + snapshotWidth + " x " + snapshotHeight); in updateSnapshotSizes()
1361 log("Camera " + cameraId + " doesn't support camcorder profile"); in updateCamcorderProfile()
1367 log("Setting camcorder profile to " + nameArray[mCamcorderProfile]); in updateCamcorderProfile()
1374 log("Failed to get video size list, using preview sizes instead"); in updateVideoRecordSize()
1394 log("Setting video record profile to " + nameArray[mVideoRecordSize]); in updateVideoRecordSize()
1417 log("Setting recording frame rate to " + nameArray[mVideoFrameRate]); in updateVideoFrameRate()
1471 log("Setting layout params viewWidth: " + viewWidth + " viewHeight: " + viewHeight + in layoutPreview()
1502 log("Configuring callbacks:" + width + " x " + height + in configureCallbacks()
1541 log("Got " + FPS_REPORTING_PERIOD + " callback frames, fps " in onPreviewFrame()
1622 log("MediaScanner notified: " + in notifyMediaScannerOfFile()
1635 if (success) log("Deleted file " + badFile.toString()); in deleteFile()
1636 else log("Unable to delete file " + badFile.toString()); in deleteFile()
1654 log("Starting recording"); in startRecording()
1660 log("Requesting recording permissions (audio, storage)"); in startRecording()
1669 log("Configuring MediaRecoder"); in startRecording()
1710 log("File name:" + outputFile.toString()); in startRecording()
1714 log("Preparing MediaRecorder"); in startRecording()
1726 log("Starting MediaRecorder"); in startRecording()
1729 log("Recording active"); in startRecording()
1767 log("MediaRecorder reports info: " + what + ", extra "
1773 log("Stopping recording"); in stopRecording()
1843 log("Setting color effect to " + colorEffect);
1863 log("Setting Color Effect to " + mColorEffects.get(mColorEffect)); in updateColorEffects()
1886 void log(String logLine) { in log() method in TestingCamera