Searched defs:storePath (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java108 public boolean takeScreenshot(File storePath, int quality) { argument
115 bos = new BufferedOutputStream(new FileOutputStream(storePath));
H A DUiDevice.java830 * @param storePath where the PNG should be written to
834 public boolean takeScreenshot(File storePath) { argument
835 Tracer.trace(storePath);
836 return takeScreenshot(storePath, 1.0f, 90);
844 * @param storePath where the PNG should be written to
850 public boolean takeScreenshot(File storePath, float scale, int quality) { argument
851 Tracer.trace(storePath, scale, quality);
852 return getAutomatorBridge().takeScreenshot(storePath, quality);

Completed in 982 milliseconds