Lines Matching refs:path
47 static int ffa_stat_top(const char *path, struct ffa_dirent *entry_bottom) in ffa_stat_top() argument
52 err = fs_stat(path, &entry); in ffa_stat_top()
82 static int ffa_readdir_start(const char *path) in ffa_readdir_start() argument
87 err = fs_opendir(&readdir_status.dir, path); in ffa_readdir_start()
118 static int ffa_create_top(const char *path, uint64_t *fh) in ffa_create_top() argument
130 err = fs_open(&files[handle], path, FS_O_CREATE | FS_O_WRITE); in ffa_create_top()
182 static int ffa_truncate_top(const char *path, off_t size) in ffa_truncate_top() argument
187 err = fs_open(&file, path, FS_O_CREATE | FS_O_WRITE); in ffa_truncate_top()
202 static int ffa_mkdir_top(const char *path) in ffa_mkdir_top() argument
204 int err = fs_mkdir(path); in ffa_mkdir_top()
209 static int ffa_unlink_top(const char *path) in ffa_unlink_top() argument
211 int err = fs_unlink(path); in ffa_unlink_top()