Home
last modified time | relevance | path

Searched refs:F_UNLCK (Results 1 – 14 of 14) sorted by path

/openbsd/gnu/llvm/compiler-rt/lib/profile/
H A DInstrProfilingUtil.c169 s_flock.l_type = F_UNLCK; in lprofUnlockFd()
/openbsd/gnu/llvm/lldb/source/Host/posix/
H A DLockFilePosix.cpp57 return fileLock(m_fd, F_SETLK, F_UNLCK, m_start, m_len); in DoUnlock()
/openbsd/gnu/llvm/llvm/lib/Support/Unix/
H A DPath.inc1247 Lock.l_type = F_UNLCK;
/openbsd/gnu/usr.bin/perl/ext/Fcntl/
H A DMakefile.PL20 F_SETOWN F_SETPIPE_SZ F_SETSIG F_SHARE F_SHLCK F_UNLCK F_UNSHARE
/openbsd/gnu/usr.bin/perl/ext/POSIX/lib/
H A DPOSIX.pod2656 C<F_SETLKW> C<F_UNLCK> C<F_WRLCK> C<O_ACCMODE> C<O_APPEND> C<O_CREAT> C<O_EXCL> C<O_NOCTTY> C<O_NON…
/openbsd/gnu/usr.bin/perl/ext/POSIX/t/
H A Dexport.t46 F_SETFD F_SETFL F_SETLK F_SETLKW F_UNLCK F_WRLCK HUGE_VAL
/openbsd/gnu/usr.bin/perl/
H A Dpp_sys.c5873 flock.l_type = F_UNLCK; in fcntl_emulate_flock()
/openbsd/lib/libc/gen/
H A Dlockf.c50 fl.l_type = F_UNLCK; in lockf()
64 if (fl.l_type == F_UNLCK || fl.l_pid == getpid()) in lockf()
/openbsd/regress/sys/kern/flock/
H A Dflock.c392 fl.l_type = F_UNLCK; in test5()
495 fl.l_type = F_UNLCK; in test6()
650 fl.l_type = F_UNLCK; in test8()
836 fl.l_type = F_UNLCK; in test11()
948 fl.l_type = F_UNLCK; in test12()
1036 fl.l_type = F_UNLCK; in test13()
1069 map[i] = F_UNLCK; in test14()
1107 fl.l_type = F_UNLCK; in test14()
1184 map[i] = F_UNLCK; in test14()
1745 fl.l_type = F_UNLCK; in test25()
[all …]
/openbsd/sys/kern/
H A Dkern_descrip.c566 case F_UNLCK: in sys_fcntl()
567 error = VOP_ADVLOCK(vp, fdp, F_UNLCK, &fl, F_POSIX); in sys_fcntl()
584 VOP_ADVLOCK(vp, fdp, F_UNLCK, &fl, F_POSIX); in sys_fcntl()
585 fl.l_type = F_UNLCK; in sys_fcntl()
617 fl.l_type != F_UNLCK && in sys_fcntl()
1254 lf.l_type = F_UNLCK; in closef()
1255 (void) VOP_ADVLOCK(vp, fdp, F_UNLCK, &lf, F_POSIX); in closef()
1317 lf.l_type = F_UNLCK; in sys_flock()
1319 error = VOP_ADVLOCK(vp, (caddr_t)fp, F_UNLCK, &lf, F_FLOCK); in sys_flock()
H A Duipc_syscalls.c1593 if (fl.l_type == F_UNLCK) { in sys_ypconnect()
H A Dvfs_lockf.c267 fl->l_type = F_UNLCK; in lf_advlock()
300 case F_UNLCK: in lf_advlock()
367 lock->lf_type = F_UNLCK; in lf_setlock()
606 fl->l_type = F_UNLCK; in lf_getlock()
878 lock->lf_type == F_UNLCK ? "unlock" : in lf_print()
H A Dvfs_vnops.c606 lf.l_type = F_UNLCK; in vn_closefile()
607 (void) VOP_ADVLOCK(vp, (caddr_t)fp, F_UNLCK, &lf, F_FLOCK); in vn_closefile()
/openbsd/sys/sys/
H A Dfcntl.h167 #define F_UNLCK 2 /* unlock */ macro