Lines Matching full:path
14 #define SAFE_OPENAT(dirfd, path, oflags, ...) \
16 (dirfd), (path), (oflags), ## __VA_ARGS__)
18 #define SAFE_FILE_READAT(dirfd, path, buf, nbyte) \
20 (dirfd), (path), (buf), (nbyte))
23 #define SAFE_FILE_PRINTFAT(dirfd, path, fmt, ...) \
25 (dirfd), (path), (fmt), __VA_ARGS__)
27 #define SAFE_UNLINKAT(dirfd, path, flags) \
28 safe_unlinkat(__FILE__, __LINE__, (dirfd), (path), (flags))
30 #define SAFE_FCHOWNAT(dirfd, path, owner, group, flags) \
32 (dirfd), (path), (owner), (group), (flags))
34 #define SAFE_FSTATAT(dirfd, path, statbuf, flags) \
35 safe_fstatat(__FILE__, __LINE__, (dirfd), (path), (statbuf), (flags))
41 const char *const path, const int oflags, ...)
45 const int dirfd, const char *const path,
49 int tst_file_vprintfat(const int dirfd, const char *const path,
52 int tst_file_printfat(const int dirfd, const char *const path,
57 const int dirfd, const char *const path,
62 const int dirfd, const char *const path,
67 const int dirfd, const char *const path, const int flags)
71 const int dirfd, const char *const path, uid_t owner,
76 const int dirfd, const char *const path, struct stat *statbuf,