RPMRPC Vectors. | |
typedef int(* | fdio_mkdir_function_t )(const char *path, mode_t mode) |
typedef int(* | fdio_chdir_function_t )(const char *path) |
typedef int(* | fdio_rmdir_function_t )(const char *path) |
typedef int(* | fdio_rename_function_t )(const char *oldpath, const char *newpath) |
typedef int(* | fdio_unlink_function_t )(const char *path) |
typedef int(* | fdio_stat_function_t )(const char *path, struct stat *st) |
typedef int(* | fdio_lstat_function_t )(const char *path, struct stat *st) |
typedef int(* | fdio_access_function_t )(const char *path, int amode) |
RPMRPC Interface. | |
int | Mkdir (const char *path, mode_t mode) |
mkdir(2) clone. More... | |
int | Chdir (const char *path) |
chdir(2) clone. More... | |
int | Rmdir (const char *path) |
rmdir(2) clone. More... | |
int | Rename (const char *oldpath, const char *newpath) |
rename(2) clone. More... | |
int | Link (const char *oldpath, const char *newpath) |
link(2) clone. More... | |
int | Unlink (const char *path) |
unlink(2) clone. More... | |
int | Readlink (const char *path, char *buf, size_t bufsiz) |
readlink(2) clone. More... | |
int | Stat (const char *path, struct stat *st) |
stat(2) clone. More... | |
int | Lstat (const char *path, struct stat *st) |
lstat(2) clone. More... | |
int | Access (const char *path, int amode) |
access(2) clone. More... | |
int | Glob (const char *pattern, int flags, int errfunc(const char *epath, int eerrno), glob_t *pglob) |
glob(3) clone. More... | |
void | Globfree (glob_t *pglob) |
globfree(3) clone. More... | |
DIR * | Opendir (const char *path) |
opendir(3) clone. More... | |
dirent * | Readdir (DIR *dir) |
readdir(3) clone. More... | |
int | Closedir (DIR *dir) |
closedir(3) clone. More... |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
access(2) clone.
|
|
chdir(2) clone.
|
|
closedir(3) clone.
Definition at line 1503 of file rpmrpc.c. Referenced by Glob. |
|
glob(3) clone.
|
|
globfree(3) clone.
|
|
link(2) clone.
|
|
lstat(2) clone.
Definition at line 1351 of file rpmrpc.c. Referenced by Glob. |
|
mkdir(2) clone.
|
|
opendir(3) clone.
Definition at line 1466 of file rpmrpc.c. Referenced by Glob. |
|
readdir(3) clone.
Definition at line 1494 of file rpmrpc.c. Referenced by Glob. |
|
readlink(2) clone.
|
|
rename(2) clone.
|
|
rmdir(2) clone.
|
|
stat(2) clone.
Definition at line 1326 of file rpmrpc.c. Referenced by Glob. |
|
unlink(2) clone.
Definition at line 232 of file rpmrpc.c. References _libio_off_t, and dirent. |