Home
last modified time | relevance | path

Searched refs:stat64 (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/main/native/
DUnixFileSystem_md.c54 #define stat64 stat macro
112 struct stat64 sb; in statMode()
113 if (stat64(path, &sb) == 0) { in statMode()
228 struct stat64 sb; in Java_java_io_UnixFileSystem_getLastModifiedTime0()
229 if (stat64(path, &sb) == 0) { in Java_java_io_UnixFileSystem_getLastModifiedTime0()
429 struct stat64 sb; in Java_java_io_UnixFileSystem_setLastModifiedTime0()
431 if (stat64(path, &sb) == 0) { in Java_java_io_UnixFileSystem_setLastModifiedTime0()
DFileKey.c39 #define stat64 stat macro
59 struct stat64 fbuf; in FileKey_init()
Dio_util_md.c35 #define stat64 stat macro
78 struct stat64 buf64; in handleOpen()
DUnixNativeDispatcher.c54 #define stat64 stat macro
124 typedef int fstatat64_func(int, const char *, struct stat64 *, int);
144 struct stat64 *statbuf, int flag) in fstatat64_wrapper()
156 struct stat64 *statbuf, int flag) in fstatat64_wrapper()
463 static void prepAttributes(JNIEnv* env, struct stat64* buf, jobject attrs) { in prepAttributes()
492 struct stat64 buf; in Java_sun_nio_fs_UnixNativeDispatcher_stat0()
495 RESTARTABLE(stat64(path, &buf), err); in Java_sun_nio_fs_UnixNativeDispatcher_stat0()
508 struct stat64 buf; in Java_sun_nio_fs_UnixNativeDispatcher_lstat0()
524 struct stat64 buf; in Java_sun_nio_fs_UnixNativeDispatcher_fstat()
539 struct stat64 buf; in Java_sun_nio_fs_UnixNativeDispatcher_fstatat0()
DFileDispatcherImpl.c51 #define stat64 stat macro
175 struct stat64 fbuf; in FileDispatcherImpl_size0()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp480 static jobject makeStructStat(JNIEnv* env, const struct stat64& sb) { in makeStructStat()
761 struct stat64 sb; in doStat()
763 : TEMP_FAILURE_RETRY(stat64(path.c_str(), &sb)); in doStat()
1277 struct stat64 sb; in Linux_fstat()