Lines Matching defs:buf
47 ssize_t read(int fd, void *buf, size_t nbyte)
49 ssize_t ret = OsVfsRead(fd, buf, nbyte);
53 ssize_t write(int fd, const void *buf, size_t nbyte)
55 ssize_t ret = OsVfsWrite(fd, buf, nbyte);
64 int stat(const char *path, struct stat *buf)
66 S32 ret = OsVfsStat(path, buf);
70 int statfs(const char *path, struct statfs *buf)
72 S32 ret = OsVfsStatfs(path, buf);
122 int fstat(int fd, struct stat *buf)
124 return OsVfsFstat(fd, buf);
187 ssize_t pread(int fd, void *buf, size_t nbyte, off_t offset)
189 ssize_t ret = OsVfsPread(fd, buf, nbyte, offset);
193 ssize_t pwrite(int fd, const void *buf, size_t nbyte, off_t offset)
195 ssize_t ret = OsVfsPwrite(fd, buf, nbyte, offset);