Lines Matching refs:file
1212 let mut file: FATFile = FATFile::default(); in to_dir_entry() localVariable
1214 file.file_name = self.name_to_string(); in to_dir_entry()
1215 file.first_cluster = first_cluster; in to_dir_entry()
1216 file.short_dir_entry = self.clone(); in to_dir_entry()
1217 file.loc = (loc, loc); in to_dir_entry()
1221 return FATDirEntry::File(file); in to_dir_entry()
1223 return FATDirEntry::VolId(file); in to_dir_entry()
1254 let mut file = FATFile::default(); in to_dir_entry_with_long_name() localVariable
1256 file.first_cluster = first_cluster; in to_dir_entry_with_long_name()
1257 file.file_name = name; in to_dir_entry_with_long_name()
1258 file.loc = loc; in to_dir_entry_with_long_name()
1259 file.short_dir_entry = self.clone(); in to_dir_entry_with_long_name()
1262 return FATDirEntry::File(file); in to_dir_entry_with_long_name()
1264 return FATDirEntry::VolId(file); in to_dir_entry_with_long_name()