XRootD
XrdSfsUFS Class Reference
+ Collaboration diagram for XrdSfsUFS:

Static Public Member Functions

static int Chmod (const char *fn, mode_t mode)
 
static int Close (int fd)
 
static int Mkdir (const char *fn, mode_t mode)
 
static int Open (const char *path, int oflag, mode_t omode)
 
static int Rem (const char *fn)
 
static int Remdir (const char *fn)
 
static int Rename (const char *ofn, const char *nfn)
 
static int Statfd (int fd, struct stat *buf)
 
static int Statfn (const char *fn, struct stat *buf)
 
static int Truncate (const char *fn, off_t flen)
 

Detailed Description

Definition at line 73 of file XrdSfsNative.cc.

Member Function Documentation

◆ Chmod()

static int XrdSfsUFS::Chmod ( const char *  fn,
mode_t  mode 
)
inlinestatic

Definition at line 77 of file XrdSfsNative.cc.

77 {return chmod(fn, mode);}

Referenced by XrdSfsNative::chmod().

+ Here is the caller graph for this function:

◆ Close()

static int XrdSfsUFS::Close ( int  fd)
inlinestatic

Definition at line 79 of file XrdSfsNative.cc.

79 {return close(fd);}
#define close(a)
Definition: XrdPosix.hh:43

References close.

Referenced by XrdSfsNativeFile::close().

+ Here is the caller graph for this function:

◆ Mkdir()

static int XrdSfsUFS::Mkdir ( const char *  fn,
mode_t  mode 
)
inlinestatic

Definition at line 81 of file XrdSfsNative.cc.

81 {return mkdir(fn, mode);}
int mkdir(const char *path, mode_t mode)

References mkdir().

Referenced by XrdSfsNative::mkdir(), and XrdSfsNative::Mkpath().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Open()

static int XrdSfsUFS::Open ( const char *  path,
int  oflag,
mode_t  omode 
)
inlinestatic

Definition at line 83 of file XrdSfsNative.cc.

84  {return open(path, oflag, omode);}
int open(const char *path, int oflag,...)

References open().

Referenced by XrdSfsNativeFile::open().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Rem()

static int XrdSfsUFS::Rem ( const char *  fn)
inlinestatic

Definition at line 86 of file XrdSfsNative.cc.

86 {return unlink(fn);}
int unlink(const char *path)

References unlink().

Referenced by XrdSfsNative::rem().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Remdir()

static int XrdSfsUFS::Remdir ( const char *  fn)
inlinestatic

Definition at line 88 of file XrdSfsNative.cc.

88 {return rmdir(fn);}
int rmdir(const char *path)

References rmdir().

Referenced by XrdSfsNative::remdir().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Rename()

static int XrdSfsUFS::Rename ( const char *  ofn,
const char *  nfn 
)
inlinestatic

Definition at line 90 of file XrdSfsNative.cc.

90 {return rename(ofn, nfn);}
int rename(const char *oldpath, const char *newpath)

References rename().

Referenced by XrdSfsNative::rename().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Statfd()

static int XrdSfsUFS::Statfd ( int  fd,
struct stat buf 
)
inlinestatic

Definition at line 92 of file XrdSfsNative.cc.

92 {return fstat(fd, buf);}
int fstat(int fildes, struct stat *buf)

References fstat().

Referenced by XrdSfsNativeFile::open(), and XrdSfsNativeFile::stat().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Statfn()

static int XrdSfsUFS::Statfn ( const char *  fn,
struct stat buf 
)
inlinestatic

Definition at line 94 of file XrdSfsNative.cc.

94 {return stat(fn, buf);}
int stat(const char *path, struct stat *buf)

References stat().

Referenced by XrdSfsNative::exists(), XrdSfsNative::Mkpath(), XrdSfsNativeFile::open(), and XrdSfsNative::stat().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ Truncate()

static int XrdSfsUFS::Truncate ( const char *  fn,
off_t  flen 
)
inlinestatic

Definition at line 96 of file XrdSfsNative.cc.

96 {return truncate(fn, flen);}
int truncate(const char *path, off_t offset)

References truncate().

Referenced by XrdSfsNative::truncate().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

The documentation for this class was generated from the following file: