/third_party/ltp/testcases/kernel/syscalls/nftw/ |
D | nftw64.h | 111 extern int test_func1(const char *, const struct stat64 *, int, struct FTW *); 112 extern int test_func3(const char *, const struct stat64 *, int, struct FTW *); 113 extern int test_func4(const char *, const struct stat64 *, int, struct FTW *); 114 extern int test_func5(const char *, const struct stat64 *, int, struct FTW *); 115 extern int test_func7(const char *, const struct stat64 *, int, struct FTW *); 116 extern int test_func8(const char *, const struct stat64 *, int, struct FTW *); 117 extern int test_func9(const char *, const struct stat64 *, int, struct FTW *); 118 extern int test_func10(const char *, const struct stat64 *, int, struct FTW *); 119 extern int test_func11(const char *, const struct stat64 *, int, struct FTW *); 120 extern int test_func12(const char *, const struct stat64 *, int, struct FTW *); [all …]
|
D | test_func64.c | 41 test_func1(const char *path_name, const struct stat64 *stat_pointer, in test_func1() 75 test_func3(const char *path_name, const struct stat64 *stat_pointer, in test_func3() 100 test_func4(const char *path_name, const struct stat64 *stat_pointer, in test_func4() 113 test_func5(const char *path_name, const struct stat64 *stat_pointer, in test_func5() 137 test_func7(const char *path_name, const struct stat64 *stat_pointer, in test_func7() 168 test_func8(const char *path_name, const struct stat64 *stat_pointer, in test_func8() 250 test_func9(const char *path_name, const struct stat64 *stat_pointer, in test_func9() 286 test_func10(const char *path_name, const struct stat64 *stat_pointer, in test_func10() 321 test_func11(const char *path_name, const struct stat64 *stat_pointer, in test_func11() 356 test_func12(const char *path_name, const struct stat64 *stat_pointer, in test_func12() [all …]
|
D | tools64.c | 158 nftw64_fn(const char *path, const struct stat64 *st, int ival, struct FTW *FTWS) in nftw64_fn()
|
/third_party/mesa3d/src/drm-shim/ |
D | drm_shim.c | 90 REAL_FUNCTION_POINTER(stat64); 229 GET_FUNCTION_POINTER(stat64); in init_shim() 341 PUBLIC int __xstat64(int ver, const char *path, struct stat64 *st) in __xstat64() 391 PUBLIC int __fxstat64(int ver, int fd, struct stat64 *st) in __fxstat64() 442 PUBLIC int stat64(const char* path, struct stat64* stat_buf) in stat64() function 491 PUBLIC int fstat64(int fd, struct stat64* stat_buf) in fstat64()
|
/third_party/f2fs-tools/tools/ |
D | fibmap.c | 66 void print_stat(struct stat64 *st) in print_stat() 92 static void stat_bdev(struct stat64 *st, unsigned int *start_lba) in stat_bdev() 143 struct stat64 st;
|
/third_party/ltp/testcases/kernel/fs/fsstress/ |
D | fsstress.c | 262 int lstat64_path(pathname_t *, struct stat64 *); 275 int stat64_path(pathname_t *, struct stat64 *); 655 struct stat64 statbuf; in check_cwd() 657 if (stat64(".", &statbuf) == 0 && statbuf.st_ino == top_ino) in check_cwd() 752 struct stat64 statbuf; in doproc() 760 if (chdir(buf) < 0 || stat64(".", &statbuf) < 0) { in doproc() 782 rval = stat64(".", &statbuf); in doproc() 992 int lstat64_path(pathname_t * name, struct stat64 *sbuf) in lstat64_path() 1285 int stat64_path(pathname_t * name, struct stat64 *sbuf) in stat64_path() 1291 rval = stat64(name->path, sbuf); in stat64_path() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/fstatat/ |
D | fstatat01.c | 63 int fstatat(int dirfd, const char *filename, struct stat64 *statbuf, int flags) in fstatat() 84 static struct stat64 statbuf; in main()
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | stat.h | 102 #define stat64 stat macro 103 int fstat64(int, struct stat64 *);
|
/third_party/musl/src/stat/ |
D | stat.c | 10 weak_alias(stat, stat64);
|
/third_party/musl/compat/time32/ |
D | stat_time32.c | 17 weak_alias(stat, stat64);
|
/third_party/ltp/testcases/kernel/mem/mmapstress/ |
D | mmapstress01.c | 461 struct stat64 statbuf; 484 if (stat64(file, &statbuf) == -1) { 599 struct stat64 statbuf;
|
D | mmapstress10.c | 525 struct stat64 statbuf; 704 struct stat64 statbuf; 788 struct stat64 statbuf;
|
/third_party/gptfdisk/ |
D | diskio.cc | 24 #define stat64 stat macro
|
D | diskio.h | 34 #define stat64 stat macro
|
D | diskio-unix.cc | 57 struct stat64 st; in OpenForRead() 434 struct stat64 st; in DiskSize()
|
/third_party/pulseaudio/src/utils/ |
D | padsp.c | 131 static int (*_stat64)(const char *, struct stat64 *) = NULL; 133 static int (*___xstat64)(int, const char *, struct stat64 *) = NULL; 214 _stat64 = (int (*)(const char *, struct stat64 *)) dlsym_fn(RTLD_NEXT, "stat64"); \ 230 … ___xstat64 = (int (*)(int, const char *, struct stat64 *)) dlsym_fn(RTLD_NEXT, "__xstat64"); \ 2486 struct stat64 parent; 2510 ret = stat64("/dev", &parent); 2538 #undef stat64 2540 int stat64(const char *pathname, struct stat64 *buf) { function 2542 int stat64(const char *pathname, struct stat *buf) { 2638 int __xstat64(int ver, const char *pathname, struct stat64 *buf) { [all …]
|
/third_party/rust/crates/libc/src/fuchsia/ |
D | aarch64.rs | 30 pub struct stat64 {
|
D | x86_64.rs | 29 pub struct stat64 {
|
/third_party/musl/include/sys/ |
D | stat.h | 102 #define stat64 stat macro
|
/third_party/musl/ndk_musl_include/sys/ |
D | stat.h | 101 #define stat64 stat macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | stat.h | 102 #define stat64 stat macro
|
/third_party/musl/porting/linux/user/include/sys/ |
D | stat.h | 102 #define stat64 stat macro
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | stat.h | 102 #define stat64 stat macro
|
/third_party/gn/src/base/files/ |
D | file.h | 29 typedef struct stat64 stat_wrapper_t;
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | stat.h | 102 #define stat64 stat macro
|