Lines Matching refs:dir
1218 let mut dir = FATDir::default(); in to_dir_entry() localVariable
1219 dir.dir_name = self.name_to_string(); in to_dir_entry()
1220 dir.first_cluster = first_cluster; in to_dir_entry()
1221 dir.root_offset = None; in to_dir_entry()
1222 dir.short_dir_entry = Some(self.clone()); in to_dir_entry()
1223 dir.loc = Some((loc, loc)); in to_dir_entry()
1225 return FATDirEntry::Dir(dir); in to_dir_entry()
1258 let mut dir = FATDir::default(); in to_dir_entry_with_long_name() localVariable
1260 dir.first_cluster = first_cluster; in to_dir_entry_with_long_name()
1261 dir.dir_name = name; in to_dir_entry_with_long_name()
1262 dir.loc = Some(loc); in to_dir_entry_with_long_name()
1263 dir.short_dir_entry = Some(self.clone()); in to_dir_entry_with_long_name()
1264 dir.root_offset = None; in to_dir_entry_with_long_name()
1266 return FATDirEntry::Dir(dir); in to_dir_entry_with_long_name()