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

/frameworks/base/core/jni/
H A Dfd_utils.h88 const int fs_flags; member in class:FileDescriptorInfo
96 int fd_flags, int fs_flags, off_t offset);
H A Dfd_utils.cpp196 int fs_flags = TEMP_FAILURE_RETRY(fcntl(fd, F_GETFL)); local
197 if (fs_flags == -1) {
208 int open_flags = fs_flags & (kOpenFlags);
209 fs_flags = fs_flags & (~(kOpenFlags));
211 return new FileDescriptorInfo(f_stat, file_path, fd, open_flags, fd_flags, fs_flags, offset);
245 if (TEMP_FAILURE_RETRY(fcntl(new_fd, F_SETFL, fs_flags)) == -1) {
247 PLOG(ERROR) << "Failed fcntl(" << new_fd << ", F_SETFL, " << fs_flags << ")"; local
273 fs_flags(0),
279 int fd, int open_flags, int fd_flags, int fs_flags,
278 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 42 milliseconds