Lines Matching refs:dir
1222 let mut dir = FATDir::default(); in to_dir_entry() localVariable
1223 dir.dir_name = self.name_to_string(); in to_dir_entry()
1224 dir.first_cluster = first_cluster; in to_dir_entry()
1225 dir.root_offset = None; in to_dir_entry()
1226 dir.short_dir_entry = Some(self.clone()); in to_dir_entry()
1227 dir.loc = Some((loc, loc)); in to_dir_entry()
1229 return FATDirEntry::Dir(dir); in to_dir_entry()
1262 let mut dir = FATDir::default(); in to_dir_entry_with_long_name() localVariable
1264 dir.first_cluster = first_cluster; in to_dir_entry_with_long_name()
1265 dir.dir_name = name; in to_dir_entry_with_long_name()
1266 dir.loc = Some(loc); in to_dir_entry_with_long_name()
1267 dir.short_dir_entry = Some(self.clone()); in to_dir_entry_with_long_name()
1268 dir.root_offset = None; in to_dir_entry_with_long_name()
1270 return FATDirEntry::Dir(dir); in to_dir_entry_with_long_name()