| /src/sys/compat/linux/common/ |
| linux_fcntl.h | 183 struct LINUX##_##FLOCK lfl; \ 186 if ((fl_error = copyin(arg, &lfl, sizeof lfl))) \ 188 LINUX##_to_bsd_##FLOCK(&bfl, &lfl); \ 192 bsd_to_##LINUX##_##FLOCK(&lfl, &bfl); \ 193 return copyout(&lfl, arg, sizeof lfl); \ 197 struct LINUX##_##FLOCK lfl; \ 200 if ((fl_error = copyin(arg, &lfl, sizeof lfl))) \ [all...] |
| linux_socket.c | 194 int lfl; member in struct:__anon2344 264 int i, lfl, bfl; local 272 lfl = bsd_to_linux_msg_flags_[i].lfl; 274 if (lfl == 0) 277 if (lflag & lfl) { 291 int i, lfl, bfl; local 299 lfl = bsd_to_linux_msg_flags_[i].lfl; 305 if (lfl < 0 [all...] |
| /src/sys/rump/net/lib/libsockin/ |
| sockin_user.c | 185 int lfl; member in struct:__anon7512 208 int bfl, lfl; local 216 lfl = bsd_to_native_msg_flags_[i].lfl; 218 if (lflag & lfl) { 219 lflag ^= lfl; 240 lflag |= bsd_to_native_msg_flags_[i].lfl;
|