Lines Matching refs:ofl
420 struct __oflock ofl; in kern_fcntl_freebsd() local
433 error = copyin((void *)arg, &ofl, sizeof(ofl)); in kern_fcntl_freebsd()
434 fl.l_start = ofl.l_start; in kern_fcntl_freebsd()
435 fl.l_len = ofl.l_len; in kern_fcntl_freebsd()
436 fl.l_pid = ofl.l_pid; in kern_fcntl_freebsd()
437 fl.l_type = ofl.l_type; in kern_fcntl_freebsd()
438 fl.l_whence = ofl.l_whence; in kern_fcntl_freebsd()
471 ofl.l_start = fl.l_start; in kern_fcntl_freebsd()
472 ofl.l_len = fl.l_len; in kern_fcntl_freebsd()
473 ofl.l_pid = fl.l_pid; in kern_fcntl_freebsd()
474 ofl.l_type = fl.l_type; in kern_fcntl_freebsd()
475 ofl.l_whence = fl.l_whence; in kern_fcntl_freebsd()
476 error = copyout(&ofl, (void *)arg, sizeof(ofl)); in kern_fcntl_freebsd()