Lines Matching refs:sbf
78 struct flock sbf; in fcntl() local
315 if (copyin((void *)arg, &sbf, sizeof (sbf))) { in fcntl()
326 bf.l_type = sbf.l_type; in fcntl()
327 bf.l_whence = sbf.l_whence; in fcntl()
328 bf.l_start = (off64_t)sbf.l_start; in fcntl()
329 bf.l_len = (off64_t)sbf.l_len; in fcntl()
330 bf.l_sysid = sbf.l_sysid; in fcntl()
331 bf.l_pid = sbf.l_pid; in fcntl()
455 sbf.l_pad[i] = 0; in fcntl()
464 sbf.l_type = bf.l_type; in fcntl()
465 sbf.l_whence = bf.l_whence; in fcntl()
466 sbf.l_start = (off_t)bf.l_start; in fcntl()
467 sbf.l_len = (off_t)bf.l_len; in fcntl()
468 sbf.l_sysid = bf.l_sysid; in fcntl()
469 sbf.l_pid = bf.l_pid; in fcntl()
470 if (copyout(&sbf, (void *)arg, sizeof (sbf))) in fcntl()