Home | History | Annotate | Download | only in tools

Lines Matching refs:longname

168   def add_dentry(self, attributes, shortname, ext, longname, first_cluster,
176 longname: The long name for this file, with extension. Largely unrestricted.
182 longname, first_cluster, size)
204 assert dent.longname != name, "File must not exist"
244 if dent.longname == name:
284 def __init__(self, fs, attributes, shortname, ext, longname,
294 longname: The long file name stored in this dentry.
303 self.longname = longname
309 if self.longname:
310 return self.longname
337 Get the longname records necessary to store this dentry's long name,
340 if self.longname is None:
342 if len(self.longname) == 0:
345 encoded_long_name = self.longname.encode('utf-16-le')