Uses of Class
org.catacombae.jfuse.types.system.Timespec

Packages that use Timespec
org.catacombae.jfuse   
org.catacombae.jfuse.joapi   
org.catacombae.jfuse.test   
org.catacombae.jfuse.types.macfuse20   
org.catacombae.jfuse.types.system   
 

Uses of Timespec in org.catacombae.jfuse
 

Methods in org.catacombae.jfuse with parameters of type Timespec
 int MacFUSE20Operations.getxtimes(ByteBuffer path, Timespec bkuptime, Timespec crtime)
          Get the Mac OS X extended time values "backup time" and "create time".
 int MacFUSE20FileSystemAdapter.getxtimes(ByteBuffer path, Timespec bkuptime, Timespec crtime)
           
 int MacFUSE20Operations.setbkuptime(ByteBuffer path, Timespec tv)
          Set the Mac OS X extended time value "backup time".
 int MacFUSE20FileSystemAdapter.setbkuptime(ByteBuffer path, Timespec tv)
           
 int MacFUSE20Operations.setcrtime(ByteBuffer path, Timespec tv)
          Set the Mac OS X extended time value "create time".
 int MacFUSE20FileSystemAdapter.setcrtime(ByteBuffer path, Timespec tv)
           
 int FUSE26Operations.utimens(ByteBuffer path, Timespec accessTime, Timespec modificationTime)
           Change the access and modification times of a file with nanosecond resolution.
 int FUSE26FileSystemAdapter.utimens(ByteBuffer path, Timespec accessTime, Timespec modificationTime)
           
 

Uses of Timespec in org.catacombae.jfuse.joapi
 

Methods in org.catacombae.jfuse.joapi with parameters of type Timespec
 void JFUSEOperations.utimens(String path, Timespec accessTime, Timespec modificationTime)
           Change the access and modification times of a file with nanosecond resolution.
 

Uses of Timespec in org.catacombae.jfuse.test
 

Methods in org.catacombae.jfuse.test with parameters of type Timespec
 int TestFS.getxtimes(ByteBuffer path, Timespec bkuptime, Timespec crtime)
           
 int TestFS.setbkuptime(ByteBuffer path, Timespec tv)
           
 int TestFS.setcrtime(ByteBuffer path, Timespec tv)
           
 int TestFS.utimens(ByteBuffer path, Timespec accessTime, Timespec modificationTime)
           
 

Uses of Timespec in org.catacombae.jfuse.types.macfuse20
 

Fields in org.catacombae.jfuse.types.macfuse20 declared as Timespec
 Timespec Setattr_x.acctime
          Last accessed time.
 Timespec Setattr_x.bkuptime
          Last backup time.
 Timespec Setattr_x.chgtime
          Last file status change time.
 Timespec Setattr_x.crtime
          Create time.
 Timespec Setattr_x.modtime
          Last data modification time.
 

Uses of Timespec in org.catacombae.jfuse.types.system
 

Fields in org.catacombae.jfuse.types.system declared as Timespec
 Timespec Stat.st_atimespec
          Time of last access.
 Timespec Stat.st_ctimespec
          Time of last file status change.
 Timespec Stat.st_mtimespec
          Time of last data modification.
 

Methods in org.catacombae.jfuse.types.system with parameters of type Timespec
 void Timespec.setToTimespec(Timespec tv)
          Sets the fields of this Timespec object to the specified time value, expressed as another Timespec object.