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

/frameworks/base/core/jni/
H A Dfd_utils-inl.h137 int fs_flags = TEMP_FAILURE_RETRY(fcntl(fd, F_GETFL)); local
138 if (fs_flags == -1) {
149 int open_flags = fs_flags & (kOpenFlags);
150 fs_flags = fs_flags & (~(kOpenFlags));
152 return new FileDescriptorInfo(f_stat, file_path, fd, open_flags, fd_flags, fs_flags, offset);
187 if (TEMP_FAILURE_RETRY(fcntl(new_fd, F_SETFL, fs_flags)) == -1) {
189 ALOGE("Failed fcntl(%d, F_SETFL, %x) : %s", new_fd, fs_flags, strerror(errno));
215 const int fs_flags; member in class:FileDescriptorInfo
225 fs_flags(
230 FileDescriptorInfo(struct stat stat, const std::string& file_path, int fd, int open_flags, int fd_flags, int fs_flags, off_t offset) argument
[all...]

Completed in 72 milliseconds