Home
last modified time | relevance | path

Searched refs:tmp_dir (Results 1 – 19 of 19) sorted by relevance

/tools/external_updater/
Dupdate_package.sh23 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 …]
Dcrates_updater.py165 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/
Drun_tests.sh33 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/
Dtest_runner_test.py31 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,
Dacts_test_runner_test.py38 self.tmp_dir = tempfile.mkdtemp()
41 self.base_mock_test_config.log_path = self.tmp_dir
52 shutil.rmtree(self.tmp_dir)
Dacts_test_decorators_test.py301 cls.tmp_dir = tempfile.mkdtemp()
304 cls.MOCK_CONFIG.log_path = cls.tmp_dir
311 shutil.rmtree(cls.tmp_dir)
Dacts_base_class_test.py48 self.tmp_dir = tempfile.mkdtemp()
57 self.test_run_config.log_path = self.tmp_dir
63 shutil.rmtree(self.tmp_dir)
Dacts_android_device_test.py164 self.tmp_dir = tempfile.mkdtemp()
169 shutil.rmtree(self.tmp_dir)
/tools/acloud/
Drun_tests_py2.sh28 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"
Drun_tests.sh30 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/
Dmod.rs71 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/
Dproto_check.py86 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/
Dversion_selector_test.py112 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/
Ddevice_flags.py118 with tempfile.TemporaryDirectory() as tmp_dir:
123 tmp_dir, f'{partition}_{_ACONFIG_PB_FILE}')
/tools/test/connectivity/acts/framework/tests/event/
Devent_bus_integration_test.py63 with tempfile.TemporaryDirectory() as tmp_dir:
66 test_run_config.log_path = tmp_dir
/tools/asuite/aidegen/lib/
Dsource_locator.py391 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/
Datest_main_unittest.py192 tmp_dir = tempfile.mkdtemp()
193 constants.ATEST_RESULT_ROOT = tmp_dir
/tools/asuite/adevice/src/
Dfingerprint.rs849 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/
Dgnss_test_utils.py2502 with tempfile.TemporaryDirectory() as tmp_dir:
2504 ad.pull_files(pixellogger_path, tmp_dir)
2513 tmp_path = pathlib.Path(tmp_dir)