Home
last modified time | relevance | path

Searched refs:screenshot_path_ (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/cmds/dumpstate/
DDumpstateService.cpp92 dprintf(fd, "screenshot_path: %s\n", ds_.screenshot_path_.c_str()); in dump()
Ddumpstate.cpp2033 ds.screenshot_path_ = ds.GetPath(".png"); in run_main()
2046 ds.log_path_.c_str(), ds.tmp_path_.c_str(), ds.screenshot_path_.c_str()); in run_main()
2094 if (ds.screenshot_path_.empty()) { in run_main()
2216 if (!ds.screenshot_path_.empty()) { in run_main()
2218 if (rename(ds.screenshot_path_.c_str(), new_screenshot_path.c_str())) { in run_main()
2219 MYLOGE("rename(%s, %s): %s\n", ds.screenshot_path_.c_str(), in run_main()
2222 ds.screenshot_path_ = new_screenshot_path; in run_main()
2295 am_args.push_back(ds.screenshot_path_); in run_main()
Ddumpstate.h332 std::string screenshot_path_; variable
Dutils.cpp1122 const std::string& real_path = path.empty() ? screenshot_path_ : path; in TakeScreenshot()