| 239 | } |
| 240 | |
| 241 | FileDescriptorInfo::FileDescriptorInfo(int fd) : |
| 242 | fd(fd), |
| 243 | stat(), |
| 244 | open_flags(0), |
| 245 | fd_flags(0), |
| 246 | fs_flags(0), |
| 247 | offset(0), |
| 248 | is_sock(true) { |
| 249 | } |
| 250 | FileDescriptorInfo::FileDescriptorInfo(struct stat stat, const std::string& file_path, |
| 251 | int fd, int open_flags, int fd_flags, int fs_flags, |
| 252 | off_t offset) : |
nothing calls this directly
no outgoing calls
no test coverage detected