Symbol: F_GETLK
lib/libc/sys/lockf.c
67
(filedes, F_GETLK, &fl) == -1)
lib/libsysdecode/flags.c
910
case F_GETLK:
sys/compat/freebsd32/freebsd32_misc.c
4001
case F_GETLK:
sys/compat/linux/linux_file.c
1435
error = kern_fcntl(td, args->fd, F_GETLK, (intptr_t)&bsd_flock);
sys/compat/linux/linux_file.c
1550
error = kern_fcntl(td, args->fd, F_GETLK, (intptr_t)&bsd_flock);
sys/fs/fuse/fuse_vnops.c
582
case F_GETLK:
sys/fs/nfsclient/nfs_clrpcops.c
4662
if (op == F_GETLK) {
sys/fs/smbfs/smbfs_vnops.c
990
case F_GETLK:
sys/kern/kern_descrip.c
442
newcmd = F_GETLK;
sys/kern/kern_descrip.c
453
case F_GETLK:
sys/kern/kern_descrip.c
476
} else if (cmd == F_GETLK) {
sys/kern/kern_descrip.c
841
case F_GETLK:
sys/kern/kern_descrip.c
870
error = VOP_ADVLOCK(vp, (caddr_t)p->p_leader, F_GETLK, flp,
sys/kern/kern_lockf.c
670
case F_GETLK:
sys/nlm/nlm_advlock.c
365
case F_GETLK:
sys/nlm/nlm_prot_impl.c
1905
error = VOP_ADVLOCK(vs.vs_vp, NULL, F_GETLK, &fl, F_REMOTE);
sys/security/audit/bsm_fcntl.c
72
{ BSM_F_GETLK, F_GETLK },
tests/sys/capsicum/fcntl.cc
196
EXPECT_EQ(0, CHECK_FCNTL(CAP_FLOCK, caps, F_GETLK, (long)&fl));
tests/sys/capsicum/fcntl.cc
233
EXPECT_OK(fcntl(fd, F_GETLK, (long)&fl));
tests/sys/file/flock_helper.c
1400
res = fcntl(fd, F_GETLK, &fl);
tests/sys/file/flock_helper.c
156
if (fcntl(fd, F_GETLK, &fl1) < 0)
tests/sys/file/flock_helper.c
368
if (fcntl(fd, F_GETLK, &fl) < 0)
tests/sys/file/flock_helper.c
865
if (fcntl(fd, F_GETLK, &fl) < 0)
tests/sys/file/flock_helper.c
914
res = fcntl(fd, F_GETLK, &fl);
tests/sys/file/flock_helper.c
945
res = fcntl(fd, F_GETLK, &fl);
tests/sys/file/path_test.c
832
ATF_REQUIRE_ERRNO(EBADF, fcntl(pathfd, F_GETLK, &flk) == -1);
tests/sys/fs/fusefs/locks.cc
233
ASSERT_NE(-1, fcntl(fd, F_GETLK, &fl)) << strerror(errno);
tests/sys/fs/fusefs/locks.cc
283
ASSERT_NE(-1, fcntl(fd, F_GETLK, &fl)) << strerror(errno);
tests/sys/fs/fusefs/locks.cc
346
ASSERT_NE(-1, fcntl(fd, F_GETLK, &fl)) << strerror(errno);
tests/sys/fs/fusefs/locks.cc
405
ASSERT_NE(-1, fcntl(fd, F_GETLK, &fl)) << strerror(errno);
tests/sys/fs/fusefs/locks.cc
470
ASSERT_NE(-1, fcntl(fd, F_GETLK, &fl)) << strerror(errno);
tests/sys/kern/kern_copyin.c
67
ret = fcntl(scratch_file, F_GETLK, (const void *)uaddr);