Searched refs:tmp_root (Results 1 – 2 of 2) sorted by relevance
/tools/asuite/adevice/src/ |
D | fingerprint.rs | 700 let tmp_root = TempDir::new().unwrap(); in fingerprint_simple_partition() localVariable 705 tmp_root.path(), in fingerprint_simple_partition() 729 let result = fingerprint_partitions(tmp_root.path(), &[PathBuf::from("system")]).unwrap(); in fingerprint_simple_partition() 784 let tmp_root = TempDir::new().unwrap(); in fingerprint_multiple_partitions() localVariable 787 tmp_root.path(), in fingerprint_multiple_partitions() 796 tmp_root.path(), in fingerprint_multiple_partitions() 806 tmp_root.path(), in fingerprint_multiple_partitions() 850 let tmp_root = tmp_dir.path().to_owned(); in fingerprint_partition_with_interesting_file_names() localVariable 853 &tmp_root, in fingerprint_partition_with_interesting_file_names() 866 let result = fingerprint_partitions(&tmp_root, &[PathBuf::from("funky")]).unwrap(); in fingerprint_partition_with_interesting_file_names() [all …]
|
D | adevice.rs | 850 let tmp_root = TempDir::new().unwrap(); in validate_partition_removes_unused_default_partition() localVariable 851 fs::create_dir_all(tmp_root.path().join("system")).unwrap(); in validate_partition_removes_unused_default_partition() 862 validate_partitions(tmp_root.path(), &ninja_deps, &None)? in validate_partition_removes_unused_default_partition() 869 let tmp_root = TempDir::new().unwrap(); in validate_partition_bails_on_bad_partition_name() localVariable 870 fs::create_dir_all(tmp_root.path().join("system")).unwrap(); in validate_partition_bails_on_bad_partition_name() 871 fs::create_dir_all(tmp_root.path().join("sys")).unwrap(); in validate_partition_bails_on_bad_partition_name() 881 match validate_partitions(tmp_root.path(), &ninja_deps, &Some(vec!["sys".to_string()])) { in validate_partition_bails_on_bad_partition_name() 895 let tmp_root = TempDir::new().unwrap(); in validate_partition_bails_on_no_partition_on_host() localVariable 898 match validate_partitions(tmp_root.path(), &ninja_deps, &Some(vec!["system".to_string()])) { in validate_partition_bails_on_no_partition_on_host()
|