Lines Matching refs:obf
81 struct o_flock obf; in fcntl() local
337 if (copyin((void *)arg, &obf, sizeof (obf))) { in fcntl()
341 bf.l_type = obf.l_type; in fcntl()
342 bf.l_whence = obf.l_whence; in fcntl()
343 bf.l_start = (off64_t)obf.l_start; in fcntl()
344 bf.l_len = (off64_t)obf.l_len; in fcntl()
345 bf.l_sysid = (int)obf.l_sysid; in fcntl()
346 bf.l_pid = obf.l_pid; in fcntl()
459 obf.l_type = (int16_t)bf.l_type; in fcntl()
460 obf.l_whence = (int16_t)bf.l_whence; in fcntl()
461 obf.l_start = (int32_t)bf.l_start; in fcntl()
462 obf.l_len = (int32_t)bf.l_len; in fcntl()
472 obf.l_sysid = (int16_t)bf.l_sysid; in fcntl()
473 obf.l_pid = (int16_t)bf.l_pid; in fcntl()
474 if (copyout(&obf, (void *)arg, sizeof (obf))) in fcntl()