Lines Matching refs:sbf
79 struct flock sbf; in fcntl() local
348 if (copyin((void *)arg, &sbf, sizeof (sbf))) { in fcntl()
359 bf.l_type = sbf.l_type; in fcntl()
360 bf.l_whence = sbf.l_whence; in fcntl()
361 bf.l_start = (off64_t)sbf.l_start; in fcntl()
362 bf.l_len = (off64_t)sbf.l_len; in fcntl()
363 bf.l_sysid = sbf.l_sysid; in fcntl()
364 bf.l_pid = sbf.l_pid; in fcntl()
489 sbf.l_pad[i] = 0; in fcntl()
498 sbf.l_type = bf.l_type; in fcntl()
499 sbf.l_whence = bf.l_whence; in fcntl()
500 sbf.l_start = (off_t)bf.l_start; in fcntl()
501 sbf.l_len = (off_t)bf.l_len; in fcntl()
502 sbf.l_sysid = bf.l_sysid; in fcntl()
503 sbf.l_pid = bf.l_pid; in fcntl()
504 if (copyout(&sbf, (void *)arg, sizeof (sbf))) in fcntl()