Lines Matching refs:buf
32 int fstatfs64 (int fd, struct statfs64 *buf) in fstatfs64() argument
36 if (__libc_fstatfs (fd, (struct statfs *)buf) < 0) in fstatfs64()
39 buf32 = *(struct statfs *)buf; in fstatfs64()
41 buf->f_type = buf32.f_type; in fstatfs64()
42 buf->f_bsize = buf32.f_bsize; in fstatfs64()
43 buf->f_blocks = buf32.f_blocks; in fstatfs64()
44 buf->f_bfree = buf32.f_bfree; in fstatfs64()
45 buf->f_bavail = buf32.f_bavail; in fstatfs64()
46 buf->f_files = buf32.f_files; in fstatfs64()
47 buf->f_ffree = buf32.f_ffree; in fstatfs64()
48 buf->f_fsid = buf32.f_fsid; in fstatfs64()
50 buf->f_frsize = buf32.f_frsize; in fstatfs64()
52 buf->f_namelen = buf32.f_namelen; in fstatfs64()
53 memcpy (buf->f_spare, buf32.f_spare, sizeof (buf32.f_spare)); in fstatfs64()
58 int fstatfs64(int fd, struct statfs64 *buf) in fstatfs64() argument
61 return INLINE_SYSCALL(fstatfs64, 3, fd, sizeof(*buf), buf); in fstatfs64()