Home | History | Annotate | Download | only in hosts

Lines Matching refs:TMP_DIR

64 TMP_DIR = '/data/local/tmp'
816 tmp_dir = self.teststation.get_tmp_dir()
818 teststation_filename = os.path.join(tmp_dir, logcat_filename)
831 self.teststation.run('rm -rf %s' % tmp_dir)
833 logging.warn('failed to remove dir %s: %s', tmp_dir, e)
980 tmp_dir = self.teststation.get_tmp_dir()
981 src_path = os.path.join(tmp_dir, os.path.basename(dest))
994 self.teststation.run('rm -rf %s' % tmp_dir)
996 logging.warn('failed to remove dir %s: %s', tmp_dir, e)
1141 if not parent.startswith(TMP_DIR):
1142 parent = os.path.join(TMP_DIR, parent.lstrip(os.path.sep))
1144 tmp_dir = self.run_output('mktemp -d -p %s' % parent)
1145 self.tmp_dirs.append(tmp_dir)
1146 return tmp_dir