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

/systemd/src/basic/
H A Dfd-util.c142 int flags, nflags; local
151 nflags = flags | O_NONBLOCK;
153 nflags = flags & ~O_NONBLOCK;
155 if (nflags == flags)
158 if (fcntl(fd, F_SETFL, nflags) < 0)
165 int flags, nflags; local
174 nflags = flags | FD_CLOEXEC;
176 nflags = flags & ~FD_CLOEXEC;
178 if (nflags == flags)
181 if (fcntl(fd, F_SETFD, nflags) <
[all...]
H A Dbtrfs-util.c191 uint64_t flags, nflags; local
206 nflags = flags | BTRFS_SUBVOL_RDONLY;
208 nflags = flags & ~BTRFS_SUBVOL_RDONLY;
210 if (flags == nflags)
213 if (ioctl(fd, BTRFS_IOC_SUBVOL_SETFLAGS, &nflags) < 0)

Completed in 2943 milliseconds