Searched refs:fd_flags (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/jni/ |
D | fd_utils.cpp | 168 const int fd_flags; member in FileDescriptorInfo 177 int fd_flags, int fs_flags, off_t offset); 260 const int fd_flags = TEMP_FAILURE_RETRY(fcntl(fd, F_GETFD)); in CreateFromFd() local 261 if (fd_flags == -1) { in CreateFromFd() 297 return new FileDescriptorInfo(f_stat, file_path, fd, open_flags, fd_flags, fs_flags, offset); in CreateFromFd() 327 if (TEMP_FAILURE_RETRY(fcntl(new_fd, F_SETFD, fd_flags)) == -1) { in ReopenOrDetach() 331 fd_flags, in ReopenOrDetach() 353 int dup_flags = (fd_flags & FD_CLOEXEC) ? O_CLOEXEC : 0; in ReopenOrDetach() 371 fd_flags(0), in FileDescriptorInfo() 378 int fd, int open_flags, int fd_flags, int fs_flags, in FileDescriptorInfo() argument [all …]
|