Searched refs:tmpdir (Results 1 – 2 of 2) sorted by relevance
/packages/services/Car/tests/BugReportApp/utils/ |
D | bugreport_app_tester.py | 272 tmpdir = tempfile.mkdtemp(prefix='aae-bugreport-', suffix='db') 273 exit_code, stdout_lines = self._device.adb(['pull', SQLITE_DB_DIR, tmpdir]) 275 shutil.rmtree(tmpdir, ignore_errors=True) 278 conn = sqlite3.connect(os.path.join(tmpdir, 'databases/bugreport.db')) 292 shutil.rmtree(tmpdir, ignore_errors=True) 514 tmpdir = tempfile.mkdtemp(prefix='aae-bugreport-', suffix='zip', dir=".") 515 zippath = tmpdir + '/bugreport.zip' 520 shutil.rmtree(tmpdir, ignore_errors=True) 528 self._write_files_to_data_dir(files, tmpdir)
|
/packages/apps/Traceur/src/com/android/traceur/ |
D | TraceUtils.java | 111 public static Process exec(String cmd, String tmpdir) throws IOException { in exec() argument 112 return exec(cmd, tmpdir, true); in exec() 115 public static Process exec(String cmd, String tmpdir, boolean logOutput) throws IOException { in exec() argument 117 String[] envp = {"TMPDIR=" + tmpdir}; in exec() 118 envp = tmpdir == null ? null : envp; in exec()
|