Lines Matching refs:log
52 import android.util.Log;
262 mLogView = (TextView) findViewById(R.id.log);
300 log("onResume: Setting up");
312 log("onPause: Not releasing camera");
319 log("onPause: Releasing camera");
356 log("Surface holder available: " + width + " x " + height);
435 log("Stopping preview and callbacks to switch resolutions");
445 log("Setting preview size to " + width + "x" + height);
451 log("Restarting preview");
471 log("Setting preview frame rate to " + ((TextView)view).getText());
491 log("Starting preview");
496 log("Stopping preview");
514 log("Setting focus mode to " + focusMode);
534 log("Triggering autofocus");
543 log("Cancelling autofocus");
552 log("Autofocus completed: " + (success ? "success" : "failure") );
560 log("Autofocus movement: " + (start ? "starting" : "stopped") );
573 log("Setting flash mode to " + flashMode);
595 log("Setting snapshot size to " + width + " x " + height);
612 log("Taking picture");
631 log("Setting camcorder profile to " + ((TextView)view).getText());
646 log("Setting video record size to " + mVideoRecordSize);
663 log("Setting video record size to " + ((TextView)view).getText());
680 log("Setting video frame rate to " + ((TextView)view).getText());
720 log("Shutter callback received");
727 log("Raw callback received");
734 log("Postview callback received");
741 log("JPEG picture callback received");
760 log("Setting preview format to " +
770 log("Stopping preview and callbacks to switch formats");
801 log("Disabling preview callbacks");
808 log("Enabling preview callbacks");
822 log("Setting up camera " + mCameraId);
826 log("Opening camera " + mCameraId);
845 log("Configuring camera");
862 log("Video stabilization is supported");
865 log("Video stabilization not supported");
870 log("Auto-Exposure locking is supported");
873 log("Auto-Exposure locking is not supported");
881 log("Setting preview display");
885 Log.e(TAG, "Unable to set up preview!");
895 log("Starting preview" );
907 log("Closing old camera");
928 log("Setting AF mode to " + mAfModes.get(mAfMode));
945 log("Setting Flash mode to " + mFlashModes.get(mFlashMode));
957 log("Auto-Exposure was " + mParams.getAutoExposureLock());
959 log("Auto-Exposure is now " + mParams.getAutoExposureLock());
982 log("Setting preview size to " + width + " x " + height);
1010 log("Setting preview frame rate to " + nameArray[mPreviewFrameRate]);
1031 log("Setting preview format to " +
1055 log("Setting snapshot size to " + snapshotWidth + " x " + snapshotHeight);
1113 log("Setting camcorder profile to " + nameArray[mCamcorderProfile]);
1120 log("Failed to get video size list, using preview sizes instead");
1140 log("Setting video record profile to " + nameArray[mVideoRecordSize]);
1163 log("Setting recording frame rate to " + nameArray[mVideoFrameRate]);
1221 log("Configuring callbacks:" + width + " x " + height +
1260 log("Got " + FPS_REPORTING_PERIOD + " callback frames, fps "
1341 log("MediaScanner notified: " +
1354 if (success) log("Deleted file " + badFile.toString());
1355 else log("Unable to delete file " + badFile.toString());
1360 log("Starting recording");
1362 log("Configuring MediaRecoder");
1394 log("File name:" + outputFile.toString());
1398 log("Preparing MediaRecorder");
1410 log("Starting MediaRecorder");
1413 log("Recording active");
1451 log("MediaRecorder reports info: " + what + ", extra "
1457 log("Stopping recording");
1507 Log.e(TAG, "JPEG callback buffers not supported!");
1511 Log.e(TAG, "Unknown-format callback buffers not supported!");
1520 /** Increment or decrement log indentation level */
1533 /** Log both to log text view and to device logcat */
1534 void log(String logLine) {
1535 Log.d(TAG, logLine);
1540 Log.e(TAG, logLine);