Lines Matching refs:file
1192 let mut file: FATFile = FATFile::default(); in to_dir_entry() localVariable
1194 file.file_name = self.name_to_string(); in to_dir_entry()
1195 file.first_cluster = first_cluster; in to_dir_entry()
1196 file.short_dir_entry = self.clone(); in to_dir_entry()
1197 file.loc = (loc, loc); in to_dir_entry()
1201 return FATDirEntry::File(file); in to_dir_entry()
1203 return FATDirEntry::VolId(file); in to_dir_entry()
1234 let mut file = FATFile::default(); in to_dir_entry_with_long_name() localVariable
1236 file.first_cluster = first_cluster; in to_dir_entry_with_long_name()
1237 file.file_name = name; in to_dir_entry_with_long_name()
1238 file.loc = loc; in to_dir_entry_with_long_name()
1239 file.short_dir_entry = self.clone(); in to_dir_entry_with_long_name()
1242 return FATDirEntry::File(file); in to_dir_entry_with_long_name()
1244 return FATDirEntry::VolId(file); in to_dir_entry_with_long_name()