Home
last modified time | relevance | path

Searched refs:storePath (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DUiDevice.java834 public boolean takeScreenshot(File storePath) { in takeScreenshot() argument
835 Tracer.trace(storePath); in takeScreenshot()
836 return takeScreenshot(storePath, 1.0f, 90); in takeScreenshot()
850 public boolean takeScreenshot(File storePath, float scale, int quality) { in takeScreenshot() argument
851 Tracer.trace(storePath, scale, quality); in takeScreenshot()
852 return getAutomatorBridge().takeScreenshot(storePath, quality); in takeScreenshot()
DUiAutomatorBridge.java108 public boolean takeScreenshot(File storePath, int quality) { in takeScreenshot() argument
115 bos = new BufferedOutputStream(new FileOutputStream(storePath)); in takeScreenshot()