Lines Matching refs:screenshot

182      * Delay before a screenshot is taken.
184 * Should be at least 3 seconds, otherwise its toast might show up in the screenshot.
228 * Flag indicating whether a screenshot is being taken.
503 // Wear bugreport doesn't need the bug info dialog, screenshot and cancel action.
628 * Starting point for taking a screenshot.
631 * taking the screenshot.
651 // Show a toast just once, otherwise it might be captured in the screenshot.
658 * Takes a screenshot after {@code delay} seconds.
662 Log.d(TAG, "Taking screenshot for " + id + " in " + delay + " seconds");
671 // It's time to take the screenshot: let the proper thread handle it
693 Log.d(TAG, "Not updating progress for " + info.id + " while taking screenshot"
740 Log.i(TAG, "Deleting screenshot file " + file);
819 final File screenshot = getFileExtra(intent, EXTRA_SCREENSHOT);
820 if (screenshot != null) {
821 info.addScreenshot(screenshot);
915 for (File screenshot : info.screenshotFiles) {
916 final Uri screenshotUri = getUri(context, screenshot);
1381 * Takes a screenshot and save it to the given location.
1393 Log.e(TAG, "Failed to save screenshot on " + path);
1396 Log.e(TAG, "Failed to save screenshot on " + path, e);
1685 * Path of the screenshot files.
1701 * Internal counter used to name screenshot files.
1731 * Gets the name for next screenshot file.
1735 return "screenshot-" + pid + "-" + screenshotCounter + ".png";
1739 * Saves the location of a taken screenshot so it can be sent out at the end.
1741 void addScreenshot(File screenshot) {
1742 screenshotFiles.add(screenshot);
1759 Log.d(TAG, "Renaming screenshot file " + oldFile + " to " + renamedFile);