Searched refs:f_stat (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/jni/
H A Dfd_utils-inl.h70 struct stat f_stat; local
73 if (TEMP_FAILURE_RETRY(fstat(fd, &f_stat)) == -1) {
78 if (S_ISSOCK(f_stat.st_mode)) {
102 if (!S_ISCHR(f_stat.st_mode) && !S_ISREG(f_stat.st_mode)) {
103 ALOGE("Unsupported st_mode %d", f_stat.st_mode);
153 return new FileDescriptorInfo(f_stat, file_path, fd, open_flags, fd_flags, fs_flags, offset);
159 struct stat f_stat; local
160 if (TEMP_FAILURE_RETRY(fstat(fd, &f_stat)) == -1) {
164 return f_stat
[all...]

Completed in 954 milliseconds