Searched refs:tmp_dir (Results 1 – 19 of 19) sorted by relevance
/tools/external_updater/ |
D | update_package.sh | 23 tmp_dir=$1 30 echo "Entering $tmp_dir..." 31 cd $tmp_dir 57 cp -a -f --update=none --parents **/*.bp "$tmp_dir" 70 total_files=$(ls $tmp_dir/patches | grep -Ei '(diff|patch)$' | wc -l) 71 for p in $tmp_dir/patches/*.{diff,patch} 77 if [ -f $tmp_dir/Cargo.toml ] 85 patch -p1 -d $tmp_dir --no-backup-if-mismatch < $p; 88 if [ -f $tmp_dir/Cargo.toml -a -f $tmp_dir/Android.bp ] 98 mv $tmp_dir $external_dir [all …]
|
D | crates_updater.py | 165 tmp_dir = tempfile.TemporaryDirectory() 166 shutil.move(self._proj_path, tmp_dir.name) 168 shutil.move(Path(tmp_dir.name) / self.package, self.package_dir)
|
/tools/asuite/aidegen/ |
D | run_tests.sh | 33 local tmp_dir=$(mktemp -d) 35 python3 -m coverage html -d $tmp_dir --rcfile=$RC_FILE 36 echo "Coverage report available at file://${tmp_dir}/index.html"
|
/tools/test/connectivity/acts/framework/tests/ |
D | test_runner_test.py | 31 self.tmp_dir = tempfile.mkdtemp() 34 self.base_mock_test_config.log_path = self.tmp_dir 42 shutil.rmtree(self.tmp_dir) 121 os.path.join(self.tmp_dir, self.base_mock_test_config.testbed_name,
|
D | acts_test_runner_test.py | 38 self.tmp_dir = tempfile.mkdtemp() 41 self.base_mock_test_config.log_path = self.tmp_dir 52 shutil.rmtree(self.tmp_dir)
|
D | acts_test_decorators_test.py | 301 cls.tmp_dir = tempfile.mkdtemp() 304 cls.MOCK_CONFIG.log_path = cls.tmp_dir 311 shutil.rmtree(cls.tmp_dir)
|
D | acts_base_class_test.py | 48 self.tmp_dir = tempfile.mkdtemp() 57 self.test_run_config.log_path = self.tmp_dir 63 shutil.rmtree(self.tmp_dir)
|
D | acts_android_device_test.py | 164 self.tmp_dir = tempfile.mkdtemp() 169 shutil.rmtree(self.tmp_dir)
|
/tools/acloud/ |
D | run_tests_py2.sh | 28 local tmp_dir=$(mktemp -d) 31 PYTHONPATH=$(get_python_path) python -m coverage html -d $tmp_dir --rcfile=$rc_file 32 echo "coverage report available at file://${tmp_dir}/index.html"
|
D | run_tests.sh | 30 local tmp_dir=$(mktemp -d) 33 PYTHONPATH=$(get_python_path) python3 -m coverage html -d $tmp_dir --rcfile=$rc_file 34 echo "coverage report available at file://${tmp_dir}/index.html"
|
/tools/netsim/rust/common/src/system/ |
D | mod.rs | 71 let tmp_dir = netsimd_temp_dir_pathbuf(); in test_forge() localVariable 72 assert_eq!(tmp_dir.to_str().unwrap(), "/tmp/forge/android-ryle/netsimd"); in test_forge()
|
/tools/test/connectivity/tools/ |
D | proto_check.py | 86 with tempfile.TemporaryDirectory() as tmp_dir: 87 module_name = compile_proto(proto_file, tmp_dir) 90 tmp_proto_gen_file = os.path.join(tmp_dir, '%s.py' % module_name)
|
/tools/test/connectivity/acts/framework/tests/libs/ |
D | version_selector_test.py | 112 cls.tmp_dir = tempfile.mkdtemp() 116 shutil.rmtree(cls.tmp_dir) 124 test_run_config.log_path = self.tmp_dir
|
/tools/test/mobly_extensions/tools/ |
D | device_flags.py | 118 with tempfile.TemporaryDirectory() as tmp_dir: 123 tmp_dir, f'{partition}_{_ACONFIG_PB_FILE}')
|
/tools/test/connectivity/acts/framework/tests/event/ |
D | event_bus_integration_test.py | 63 with tempfile.TemporaryDirectory() as tmp_dir: 66 test_run_config.log_path = tmp_dir
|
/tools/asuite/aidegen/lib/ |
D | source_locator.py | 391 tmp_dir = dir_list.copy() 392 tmp_dir.insert(i, _REPACKAGES) 393 real_path = os.path.join(root_path, os.path.join(*tmp_dir))
|
/tools/asuite/atest/ |
D | atest_main_unittest.py | 192 tmp_dir = tempfile.mkdtemp() 193 constants.ATEST_RESULT_ROOT = tmp_dir
|
/tools/asuite/adevice/src/ |
D | fingerprint.rs | 849 let tmp_dir = TempDir::new().unwrap(); in fingerprint_partition_with_interesting_file_names() localVariable 850 let tmp_root = tmp_dir.path().to_owned(); in fingerprint_partition_with_interesting_file_names()
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/gnss/ |
D | gnss_test_utils.py | 2502 with tempfile.TemporaryDirectory() as tmp_dir: 2504 ad.pull_files(pixellogger_path, tmp_dir) 2513 tmp_path = pathlib.Path(tmp_dir)
|