HomeSort by relevance Sort by last modified time
    Searched defs:screenshot_path (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/ui/ash/
screenshot_taker.cc 60 const base::FilePath& screenshot_path)
62 screenshot_path_(screenshot_path) {
97 const base::FilePath& screenshot_path)> ShowNotificationCallback;
100 const base::FilePath& screenshot_path,
116 base::Bind(callback, result, screenshot_path));
120 const base::FilePath& screenshot_path,
123 DCHECK(!screenshot_path.empty());
125 if (!file_util::CreateDirectory(screenshot_path.DirName())) {
127 << screenshot_path.DirName().value();
132 screenshot_path));
263 base::FilePath screenshot_path = local
269 screenshot_path, local
299 base::FilePath screenshot_path = local
306 screenshot_path, local
    [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.c 44 static char screenshot_path[PATH_MAX] = ""; variable
105 if (screenshot_path[0]) {
107 run_command(NULL, 10, "/system/bin/screencap", "-p", screenshot_path, NULL);
108 ALOGI("wrote screenshot: %s\n", screenshot_path);
455 strlcpy(screenshot_path, path, sizeof(screenshot_path));
456 strlcat(screenshot_path, ".png", sizeof(screenshot_path));
501 "--es", "android.intent.extra.SCREENSHOT", screenshot_path,
  /external/chromium/chrome/browser/ui/webui/
bug_report_ui.cc 630 std::string screenshot_path; local
631 (*i)->GetAsString(&screenshot_path);
632 screenshot_path.erase(0, strlen(kScreenshotBaseUrl));
636 if (!screenshot_path.empty())
637 image = screenshot_source_->GetScreenshot(screenshot_path);
  /external/chromium_org/chrome/browser/ui/webui/
feedback_ui.cc 608 std::string screenshot_path; local
609 (*i++)->GetAsString(&screenshot_path);
610 screenshot_path.erase(0, strlen(ScreenshotSource::kScreenshotUrlRoot));
614 if (!screenshot_path.empty() && screenshot_source_)
615 image_ptr = screenshot_source_->GetCachedScreenshot(screenshot_path);

Completed in 165 milliseconds