Lines Matching refs:dir
1227 let mut dir = FATDir::default(); in to_dir_entry() localVariable
1228 dir.dir_name = self.name_to_string(); in to_dir_entry()
1229 dir.first_cluster = first_cluster; in to_dir_entry()
1230 dir.root_offset = None; in to_dir_entry()
1231 dir.short_dir_entry = Some(self.clone()); in to_dir_entry()
1232 dir.loc = Some((loc, loc)); in to_dir_entry()
1234 return FATDirEntry::Dir(dir); in to_dir_entry()
1267 let mut dir = FATDir::default(); in to_dir_entry_with_long_name() localVariable
1269 dir.first_cluster = first_cluster; in to_dir_entry_with_long_name()
1270 dir.dir_name = name; in to_dir_entry_with_long_name()
1271 dir.loc = Some(loc); in to_dir_entry_with_long_name()
1272 dir.short_dir_entry = Some(self.clone()); in to_dir_entry_with_long_name()
1273 dir.root_offset = None; in to_dir_entry_with_long_name()
1275 return FATDirEntry::Dir(dir); in to_dir_entry_with_long_name()