Lines Matching refs:s
773 let s = e.short_name(); in is_empty() localVariable
774 if s == "." || s == ".." { in is_empty()
874 let short_name = if let FATDirEntryOrShortName::ShortName(s) = in rename()
877 s in rename()
1454 FATRawDirEntry::Short(s) => { in get_dir_entry()
1460 Some(s.to_dir_entry(( in get_dir_entry()
1604 FATRawDirEntry::Short(s) => s, in new()
1637 Some(s) => { in short_name()
1638 return s.name_to_string(); in short_name()
1657 FATDirEntry::VolId(s) => { in short_dir_entry()
1658 return Some(s.short_dir_entry); in short_dir_entry()
1673 FATDirEntry::VolId(s) => { in first_cluster()
1674 return s.first_cluster; in first_cluster()
1687 FATDirEntry::VolId(s) => Some(s.loc), in get_dir_range()
1700 Some(s) => {
1701 return s.name;
1705 let mut s = [0x20u8; 11]; localVariable
1706 s[0] = '/' as u8;
1707 return s;
1710 FATDirEntry::VolId(s) => {
1711 return s.short_dir_entry.name;
1724 FATDirEntry::VolId(s) => { in name()
1725 return s.file_name.clone(); in name()
1994 .map(|s| u16::from_str_radix(s, 16));
2170 let mut s = String::from_utf16_lossy(self.name.as_slice()); in to_string() localVariable
2172 if let Some(len) = s.find('\u{0}') { in to_string()
2173 s.truncate(len); in to_string()
2175 return s; in to_string()