Home | Sort by: relevance | last modified time | path |
/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:__anon9f187f6e0108 264 int i, lfl, bfl; local in function:linux_to_bsd_msg_flags 272 lfl = bsd_to_linux_msg_flags_[i].lfl; 274 if (lfl == 0) 277 if (lflag & lfl) { 291 int i, lfl, bfl; local in function:bsd_to_linux_msg_flags 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:__anon2e16d44d0108 208 int bfl, lfl; local in function:native_to_bsd_msg_flags 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; |