Searched refs:temp_dir (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Bluetooth/system/gd/os/linux_generic/ |
D | files_test.cc | 32 auto temp_dir = std::filesystem::temp_directory_path(); in TEST() local 33 auto temp_file = temp_dir / "file_1.txt"; in TEST() 37 auto none_file = temp_dir / "file_nope.txt"; in TEST() 42 auto temp_dir = std::filesystem::temp_directory_path(); in TEST() local 43 auto temp_file = temp_dir / "file_1.txt"; in TEST() 47 auto to_file = temp_dir / "file_2.txt"; in TEST() 56 auto temp_dir = std::filesystem::temp_directory_path(); in TEST() local 57 auto temp_file = temp_dir / "file_1.txt"; in TEST() 65 auto temp_dir = std::filesystem::temp_directory_path(); in TEST() local 66 auto temp_file = temp_dir / "file_1.txt"; in TEST() [all …]
|
/packages/modules/Bluetooth/system/gd/storage/ |
D | legacy_config_file_test.cc | 37 auto temp_dir = std::filesystem::temp_directory_path(); in TEST() local 38 auto temp_config = temp_dir / "temp_config.txt"; in TEST() 83 auto temp_dir = std::filesystem::temp_directory_path(); in TEST() local 84 auto temp_config = temp_dir / "temp_config.txt"; in TEST() 112 auto temp_dir = std::filesystem::temp_directory_path(); in TEST() local 113 auto temp_config = temp_dir / "temp_config.txt"; in TEST() 174 auto temp_dir = std::filesystem::temp_directory_path(); in TEST() local 175 auto temp_config = temp_dir / "temp_config.txt"; in TEST()
|
/packages/modules/Bluetooth/system/blueberry/tests/gd/cert/ |
D | adb.py | 59 temp_dir = ssh_connection.run("mktemp -d").stdout.strip() 60 ssh_connection.send_file(adb_path, temp_dir) 62 remote_adb_cmd = "%s/adb %s root" % (temp_dir, "-s %s" % serial if serial else "")
|
/packages/modules/adb/ |
D | test_device.py | 1233 temp_dir = tempfile.mkdtemp() 1234 temp_files = make_random_host_files(in_dir=temp_dir, num_files=32) 1242 device.push(temp_dir, device_dir, sync=True) 1248 if temp_dir is not None: 1249 shutil.rmtree(temp_dir) 1255 temp_dir = tempfile.mkdtemp() 1256 temp_files = make_random_host_files(in_dir=temp_dir, num_files=32) 1265 host_paths = [os.path.join(temp_dir, x.base_name) for x in temp_files] 1272 if temp_dir is not None: 1273 shutil.rmtree(temp_dir)
|
/packages/modules/Virtualization/virtualizationmanager/src/ |
D | aidl.rs | 358 let temp_dir: PathBuf = vm_context.getTemporaryDirectory()?.into(); in create_vm_context() localVariable 366 return Ok((VmContext::new(vm_context, vm_server), cid, temp_dir)); in create_vm_context()
|