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

/frameworks/base/core/jni/
H A Dfd_utils-inl.h69 struct stat f_stat; local
72 if (TEMP_FAILURE_RETRY(fstat(fd, &f_stat)) == -1) {
77 if (S_ISSOCK(f_stat.st_mode)) {
101 if (!S_ISCHR(f_stat.st_mode) && !S_ISREG(f_stat.st_mode)) {
102 ALOGE("Unsupported st_mode %d", f_stat.st_mode);
152 return new FileDescriptorInfo(f_stat, file_path, fd, open_flags, fd_flags, fs_flags, offset);
158 struct stat f_stat; local
159 if (TEMP_FAILURE_RETRY(fstat(fd, &f_stat)) == -1) {
163 return f_stat
[all...]

Completed in 123 milliseconds