HomeSort by relevance Sort by last modified time
    Searched refs:stat_portable (Results 1 - 5 of 5) sorted by null

  /development/ndk/sources/android/libportable/arch-mips64/
stat.c 18 #include <stat_portable.h>
22 int WRAP(fstat)(int fd, struct stat_portable *s) {
29 return WRAP(fstat)(fd, (struct stat_portable*)s);
33 int WRAP(fstatat)(int dirfd, const char *path, struct stat_portable *s, int flags) {
41 return WRAP(fstatat)(dirfd, path, (struct stat_portable*)s, flags);
45 int WRAP(lstat)(const char *path, struct stat_portable *s) {
52 return WRAP(lstat)(path, (struct stat_portable*)s);
56 int WRAP(stat)(const char* path, struct stat_portable* s) {
63 return WRAP(stat)(path, (struct stat_portable*)s);
  /development/ndk/sources/android/libportable/arch-x86_64/
stat.c 18 #include <stat_portable.h>
22 int WRAP(fstat)(int fd, struct stat_portable *s) {
29 return WRAP(fstat)(fd, (struct stat_portable*)s);
33 int WRAP(fstatat)(int dirfd, const char *path, struct stat_portable *s, int flags) {
41 return WRAP(fstatat)(dirfd, path, (struct stat_portable*)s, flags);
45 int WRAP(lstat)(const char *path, struct stat_portable *s) {
52 return WRAP(lstat)(path, (struct stat_portable*)s);
56 int WRAP(stat)(const char* path, struct stat_portable* s) {
63 return WRAP(stat)(path, (struct stat_portable*)s);
  /development/ndk/sources/android/libportable/arch-x86/
stat.c 18 #include <stat_portable.h>
20 /* Note: The Portable Header will define stat to stat_portable */
21 int WRAP(stat)(const char *path, struct stat_portable *s)
29 int WRAP(fstat)(int fd, struct stat_portable *s)
37 int WRAP(lstat)(const char *path, struct stat_portable *s)
45 int WRAP(fstatat)(int dirfd, const char *path, struct stat_portable *s, int flags)
  /development/ndk/sources/android/libportable/arch-mips/
stat.c 20 #include <stat_portable.h>
22 /* Note: The Portable Header will define stat to stat_portable */
23 int WRAP(stat)(const char *path, struct stat_portable *s)
37 int WRAP(fstat)(int fd, struct stat_portable *s)
51 int WRAP(lstat)(const char *path, struct stat_portable *s)
65 int WRAP(fstatat)(int dirfd, const char *path, struct stat_portable *s, int flags)
  /development/ndk/sources/android/libportable/common/include/
stat_portable.h 49 struct stat_portable { __STAT64_BODY_PORTABLE }; struct
53 void stat_ntop(struct stat *n_stat, struct stat_portable *p_stat)
55 memset(p_stat, '\0', sizeof(struct stat_portable));
77 struct stat_portable { struct
177 static inline void stat_ntop(struct stat *n_stat, struct stat_portable *p_stat)
179 memset(p_stat, '\0', sizeof(struct stat_portable));

Completed in 74 milliseconds