Go to the source code of this file.
|
| mode_t | umask (mode_t mask) |
| |
| int | stat (const char *pathname, struct stat *buf) |
| |
| int | lstat (const char *pathname, struct stat *buf) |
| |
| int | fstat (int fd, struct stat *buf) |
| |
| int | fstatat (int dirfd, const char *pathname, struct stat *buf, int flags) |
| |
| int | futimens (int fd, const struct timespec times[2]) |
| |
| int | utimensat (int dirfd, const char *pathname, const struct timespec times[2], int flags) |
| |
| int | chmod (const char *pathname, mode_t mode) |
| |
| int | fchmod (int fd, mode_t mode) |
| |
| int | mkdir (const char *pathname, mode_t mode) |
| |
| int | mkfifo (const char *pathname, mode_t mode) |
| |
| int | mkfifoat (int dirfd, const char *pathname, mode_t mode) |
| |
| int | mknod (const char *pathname, mode_t mode, dev_t dev) |
| |
| int | mknodat (int dirfd, const char *pathname, mode_t mode, dev_t dev) |
| |
◆ stat
◆ lstat
◆ fstat
◆ fstatat
◆ umask
◆ chmod
◆ fchmod
◆ futimens
◆ utimensat
◆ mkdir
◆ mkfifo
◆ mkfifoat
◆ mknod
◆ mknodat
◆ __NR_stat
◆ __NR_fstat
◆ __NR_fstatat
◆ __NR_umask
◆ __NR_chmod
◆ __NR_fchmod
◆ __NR_fchmodat
| #define __NR_fchmodat fchmodat |
◆ __NR_futimesat
| #define __NR_futimesat futimesat |
◆ __NR_utimensat
◆ VSF_FILE_ATTR_CHR
◆ VSF_FILE_ATTR_BLK
◆ VSF_FILE_ATTR_EXCL
◆ VSF_FILE_ATTR_SOCK
◆ VSF_FILE_ATTR_TTY
◆ VSF_FILE_ATTR_FIFO
◆ __VSF_FILE_ATTR_SHARE_PRIV
◆ UTIME_NOW
| #define UTIME_NOW ((1l << 30) - 1l) |
◆ UTIME_OMIT
| #define UTIME_OMIT ((1l << 30) - 2l) |
◆ S_IFDIR
◆ S_IFREG
◆ S_IFLNK
◆ S_IFIFO
◆ S_IFCHR
◆ S_IFSOCK
◆ S_IFBLK
◆ S_IFMT
◆ __S_IR
◆ __S_IW
◆ __S_IX
◆ S_IROTH
◆ S_IWOTH
◆ S_IXOTH
◆ S_IRWXO
◆ S_IRGRP
◆ S_IWGRP
◆ S_IXGRP
◆ S_IRWXG
◆ S_IRUSR
◆ S_IWUSR
◆ S_IXUSR
◆ S_IRWXU
◆ S_IREAD
◆ S_IWRITE
◆ S_IEXEC
◆ S_ISUID
◆ S_ISGID
◆ S_ISVTX
◆ S_ISLNK
| #define S_ISLNK |
( |
| __MODE | ) |
|
Value:
#define S_IFMT
Definition stat.h:71
#define S_IFLNK
Definition stat.h:66
◆ S_ISREG
| #define S_ISREG |
( |
| __MODE | ) |
|
Value:
#define S_IFREG
Definition stat.h:65
◆ S_ISDIR
| #define S_ISDIR |
( |
| __MODE | ) |
|
Value:
#define S_IFDIR
Definition stat.h:64
◆ S_ISFIFO
| #define S_ISFIFO |
( |
| __MODE | ) |
|
Value:
#define S_IFIFO
Definition stat.h:67
◆ S_ISSOCK
| #define S_ISSOCK |
( |
| __MODE | ) |
|
Value:
#define S_IFSOCK
Definition stat.h:69
◆ S_ISCHR
| #define S_ISCHR |
( |
| __MODE | ) |
|
Value:
#define S_IFCHR
Definition stat.h:68
◆ S_ISBLK
| #define S_ISBLK |
( |
| __MODE | ) |
|
Value:
#define S_IFBLK
Definition stat.h:70
◆ st_atime [1/2]
| #define st_atime st_atim.tv_sec |
◆ st_mtime [1/2]
| #define st_mtime st_mtim.tv_sec |
◆ st_ctime [1/2]
| #define st_ctime st_ctim.tv_sec |
◆ st_atime [2/2]
| #define st_atime st_atim.tv_sec |
◆ st_mtime [2/2]
| #define st_mtime st_mtim.tv_sec |
◆ st_ctime [2/2]
| #define st_ctime st_ctim.tv_sec |
◆ vsf_linux_sys_stat_vplt_t
| typedef struct vsf_linux_sys_stat_vplt_t vsf_linux_sys_stat_vplt_t |
◆ umask()
◆ stat()
| int stat |
( |
const char * | pathname, |
|
|
struct stat * | buf ) |
◆ lstat()
| int lstat |
( |
const char * | pathname, |
|
|
struct stat * | buf ) |
◆ fstat()
| int fstat |
( |
int | fd, |
|
|
struct stat * | buf ) |
◆ fstatat()
| int fstatat |
( |
int | dirfd, |
|
|
const char * | pathname, |
|
|
struct stat * | buf, |
|
|
int | flags ) |
◆ futimens()
| int futimens |
( |
int | fd, |
|
|
const struct timespec | times[2] ) |
◆ utimensat()
| int utimensat |
( |
int | dirfd, |
|
|
const char * | pathname, |
|
|
const struct timespec | times[2], |
|
|
int | flags ) |
◆ chmod()
| int chmod |
( |
const char * | pathname, |
|
|
mode_t | mode ) |
◆ fchmod()
| int fchmod |
( |
int | fd, |
|
|
mode_t | mode ) |
◆ mkdir()
| int mkdir |
( |
const char * | pathname, |
|
|
mode_t | mode ) |
◆ mkfifo()
| int mkfifo |
( |
const char * | pathname, |
|
|
mode_t | mode ) |
◆ mkfifoat()
| int mkfifoat |
( |
int | dirfd, |
|
|
const char * | pathname, |
|
|
mode_t | mode ) |
◆ mknod()
| int mknod |
( |
const char * | pathname, |
|
|
mode_t | mode, |
|
|
dev_t | dev ) |
◆ mknodat()
| int mknodat |
( |
int | dirfd, |
|
|
const char * | pathname, |
|
|
mode_t | mode, |
|
|
dev_t | dev ) |
◆ vsf_linux_sys_stat_vplt