Searched refs:kbuf (Results 1 – 12 of 12) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/ |
A D | xstatconv.c | 30 buf->st_dev = kbuf->st_dev; in __xstat_conv() 31 buf->st_ino = kbuf->st_ino; in __xstat_conv() 34 buf->st_uid = kbuf->st_uid; in __xstat_conv() 35 buf->st_gid = kbuf->st_gid; in __xstat_conv() 49 buf->st_dev = kbuf->st_dev; in __xstat32_conv() 50 buf->st_ino = kbuf->st_ino; in __xstat32_conv() 53 buf->st_uid = kbuf->st_uid; in __xstat32_conv() 54 buf->st_gid = kbuf->st_gid; in __xstat32_conv() 70 buf->st_dev = kbuf->st_dev; in __xstat64_conv() 71 buf->st_ino = kbuf->st_ino; in __xstat64_conv() [all …]
|
A D | stat.c | 36 struct kernel_stat64 kbuf; in stat() local 37 result = INLINE_SYSCALL(stat64, 2, file_name, &kbuf); in stat() 39 __xstat32_conv(&kbuf, buf); in stat() 42 struct kernel_stat kbuf; in stat() local 44 result = INLINE_SYSCALL(stat, 2, file_name, &kbuf); in stat() 46 __xstat_conv(&kbuf, buf); in stat()
|
A D | lstat.c | 35 struct kernel_stat64 kbuf; 36 result = INLINE_SYSCALL(lstat64, 2, file_name, &kbuf); 38 __xstat32_conv(&kbuf, buf); 41 struct kernel_stat kbuf; 43 result = INLINE_SYSCALL(lstat, 2, file_name, &kbuf); 45 __xstat_conv(&kbuf, buf);
|
A D | getdents.c | 60 } *kbuf = (void *) buf; in _syscall3() local 62 while ((char *) kbuf < buf + retval) { in _syscall3() 63 char d_type = *((char *) kbuf + kbuf->k.d_reclen - 1); in _syscall3() 64 memmove (kbuf->u.d_name, kbuf->k.d_name, in _syscall3() 65 strlen (kbuf->k.d_name) + 1); in _syscall3() 66 kbuf->u.d_type = d_type; in _syscall3() 68 kbuf = (void *) ((char *) kbuf + kbuf->k.d_reclen); in _syscall3()
|
A D | fstat.c | 42 struct kernel_stat64 kbuf; 43 result = INLINE_SYSCALL(fstat64, 2, fd, &kbuf); 45 __xstat32_conv(&kbuf, buf); 48 struct kernel_stat kbuf; 50 result = INLINE_SYSCALL(fstat, 2, fd, &kbuf); 52 __xstat_conv(&kbuf, buf);
|
A D | xstatconv.h | 29 extern void __xstat_conv(struct kernel_stat *kbuf, struct stat *buf) attribute_hidden; 30 extern void __xstat32_conv(struct kernel_stat64 *kbuf, struct stat *buf) attribute_hidden; 32 extern void __xstat64_conv(struct kernel_stat64 *kbuf, struct stat64 *buf) attribute_hidden;
|
A D | fstat64.c | 25 struct kernel_stat64 kbuf; in _syscall2() local 27 result = __syscall_fstat64(fd, &kbuf); in _syscall2() 29 __xstat64_conv(&kbuf, buf); in _syscall2()
|
A D | fstatat64.c | 25 struct kernel_stat64 kbuf; in fstatat64() local 27 ret = INLINE_SYSCALL(fstatat64, 4, fd, file, &kbuf, flag); in fstatat64() 29 __xstat64_conv(&kbuf, buf); in fstatat64()
|
A D | lstat64.c | 35 struct kernel_stat64 kbuf; 37 result = __syscall_lstat64(file_name, &kbuf); 39 __xstat64_conv(&kbuf, buf);
|
A D | stat64.c | 36 struct kernel_stat64 kbuf; 38 result = __syscall_stat64(file_name, &kbuf); 40 __xstat64_conv(&kbuf, buf);
|
A D | fstatat.c | 23 struct kernel_stat64 kbuf; in fstatat() local 24 ret = INLINE_SYSCALL(fstatat64, 4, fd, file, &kbuf, flag); in fstatat() 26 __xstat32_conv(&kbuf, buf); in fstatat()
|
/l4re-core-master/uclibc/lib/uclibc/ARCH-all/libc/sysdeps/linux/common/ |
A D | getdents.c | 68 } *kbuf = (void *) buf; in _syscall3() local 70 while ((char *) kbuf < buf + retval) { in _syscall3() 71 char d_type = *((char *) kbuf + kbuf->k.d_reclen - 1); in _syscall3() 72 memmove (kbuf->u.d_name, kbuf->k.d_name, in _syscall3() 73 strlen (kbuf->k.d_name) + 1); in _syscall3() 74 kbuf->u.d_type = d_type; in _syscall3() 76 kbuf = (void *) ((char *) kbuf + kbuf->k.d_reclen); in _syscall3()
|
Completed in 8 milliseconds