Home | History | Annotate | Download | only in python2.7

Lines Matching refs:statres

1847                 statres = os.lstat(name)
1849 statres = os.stat(name)
1851 statres = os.fstat(fileobj.fileno())
1854 stmd = statres.st_mode
1856 inode = (statres.st_ino, statres.st_dev)
1857 if not self.dereference and statres.st_nlink > 1 and \
1887 tarinfo.uid = statres.st_uid
1888 tarinfo.gid = statres.st_gid
1890 tarinfo.size = statres.st_size
1893 tarinfo.mtime = statres.st_mtime
1909 tarinfo.devmajor = os.major(statres.st_rdev)
1910 tarinfo.devminor = os.minor(statres.st_rdev)