/glibc-2.36/sysdeps/mach/hurd/ |
D | statconv.c | 23 stat64_conv (struct stat *buf, const struct stat64 *buf64) in stat64_conv() argument 25 if (sizeof *buf == sizeof *buf64 in stat64_conv() 26 && sizeof buf->st_ino == sizeof buf64->st_ino in stat64_conv() 27 && sizeof buf->st_size == sizeof buf64->st_size in stat64_conv() 28 && sizeof buf->st_blocks == sizeof buf64->st_blocks) in stat64_conv() 30 *buf = *(struct stat *) buf64; in stat64_conv() 34 buf->st_fstype = buf64->st_fstype; in stat64_conv() 35 buf->st_fsid = buf64->st_fsid; in stat64_conv() 36 buf->st_ino = buf64->st_ino; in stat64_conv() 37 buf->st_gen = buf64->st_gen; in stat64_conv() [all …]
|
D | statfsconv.c | 23 statfs64_conv (struct statfs *buf, const struct statfs64 *buf64) in statfs64_conv() argument 26 buf->memb = buf64->memb; \ in statfs64_conv() 27 if (sizeof buf->memb != sizeof buf64->memb && buf->memb != buf64->memb) \ in statfs64_conv()
|
D | stat.c | 27 struct stat64 buf64; in __stat() local 28 return __stat64 (file, &buf64) ?: stat64_conv (buf, &buf64); in __stat()
|
D | fstat.c | 28 struct stat64 buf64; in __fstat() local 29 return __fstat64 (fd, &buf64) ?: stat64_conv (buf, &buf64); in __fstat()
|
D | lstat.c | 27 struct stat64 buf64; in __lstat() local 28 return __lstat64 (file, &buf64) ?: stat64_conv (buf, &buf64); in __lstat()
|
D | statfs.c | 27 struct statfs64 buf64; in __statfs() local 28 return __statfs64 (file, &buf64) ?: statfs64_conv (buf, &buf64); in __statfs()
|
D | fstatfs.c | 27 struct statfs64 buf64; in __fstatfs() local 28 return __fstatfs64 (fd, &buf64) ?: statfs64_conv (buf, &buf64); in __fstatfs()
|
D | fstatat.c | 28 struct stat64 buf64; in __fstatat() local 29 return (__fstatat64 (fd, filename, &buf64, flag) in __fstatat() 30 ?: stat64_conv (buf, &buf64)); in __fstatat()
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | fstatfs.c | 30 struct statfs64 buf64; in __fstatfs() local 31 int rc = INLINE_SYSCALL_CALL (fstatfs64, fd, sizeof (buf64), &buf64); in __fstatfs() 35 buf->f_type = buf64.f_type; in __fstatfs() 36 buf->f_bsize = buf64.f_bsize; in __fstatfs() 37 buf->f_blocks = buf64.f_blocks; in __fstatfs() 38 buf->f_bfree = buf64.f_bfree; in __fstatfs() 39 buf->f_bavail = buf64.f_bavail; in __fstatfs() 40 buf->f_files = buf64.f_files; in __fstatfs() 41 buf->f_ffree = buf64.f_ffree; in __fstatfs() 42 buf->f_fsid = buf64.f_fsid; in __fstatfs() [all …]
|
D | statfs.c | 29 struct statfs64 buf64; in __statfs() local 30 int rc = INLINE_SYSCALL_CALL (statfs64, file, sizeof (buf64), &buf64); in __statfs() 33 buf->f_type = buf64.f_type; in __statfs() 34 buf->f_bsize = buf64.f_bsize; in __statfs() 35 buf->f_blocks = buf64.f_blocks; in __statfs() 36 buf->f_bfree = buf64.f_bfree; in __statfs() 37 buf->f_bavail = buf64.f_bavail; in __statfs() 38 buf->f_files = buf64.f_files; in __statfs() 39 buf->f_ffree = buf64.f_ffree; in __statfs() 40 buf->f_fsid = buf64.f_fsid; in __statfs() [all …]
|
D | fxstat.c | 56 struct stat64 buf64; in __fxstat() 57 int r = INLINE_SYSCALL_CALL (fstat64, fd, &buf64); in __fxstat() 58 return r ?: __xstat32_conv (vers, &buf64, buf); in __fxstat()
|
D | xstat.c | 56 struct stat64 buf64; in __xstat() 57 int r = INLINE_SYSCALL_CALL (stat64, name, &buf64); in __xstat() 58 return r ?: __xstat32_conv (vers, &buf64, buf); in __xstat()
|
D | lxstat.c | 57 struct stat64 buf64; in __lxstat() 58 int r = INLINE_SYSCALL_CALL (lstat64, name, &buf64); in __lxstat() 59 return r ?: __xstat32_conv (vers, &buf64, buf); in __lxstat()
|
D | shmctl.c | 197 struct __shmid64_ds shmid64, *buf64 = NULL; in __shmctl() local 203 buf64 = (struct __shmid64_ds *) buf; in __shmctl() 207 buf64 = &shmid64; in __shmctl() 211 int ret = __shmctl64 (shmid, cmd, buf64); in __shmctl() 220 shmid64_to_shmid (buf, buf64); in __shmctl()
|
D | msgctl.c | 196 struct __msqid64_ds msqid64, *buf64 = NULL; in __msgctl() local 202 buf64 = (struct __msqid64_ds *) buf; in __msgctl() 206 buf64 = &msqid64; in __msgctl() 210 int ret = __msgctl64 (msqid, cmd, buf64); in __msgctl() 219 msqid64_to_msqid (buf, buf64); in __msgctl()
|