Home
last modified time | relevance | path

Searched refs:F_SEAL_SEAL (Results 1 – 5 of 5) sorted by relevance

/freebsd/tests/sys/posixshm/
H A Dmemfd_test.c85 ATF_REQUIRE(fcntl(fd, F_GET_SEALS) == F_SEAL_SEAL); in ATF_TC_BODY()
260 ATF_REQUIRE(fcntl(fd, F_ADD_SEALS, F_SEAL_SEAL) == 0); in ATF_TC_BODY()
273 ATF_REQUIRE(fcntl(fd, F_ADD_SEALS, F_SEAL_GROW | F_SEAL_SEAL) == 0); in ATF_TC_BODY()
/freebsd/sys/sys/
H A Dfcntl.h273 #define F_SEAL_SEAL 0x0001 /* Prevent adding sealings */ macro
/freebsd/sys/kern/
H A Duipc_shm.c1172 initial_seals = F_SEAL_SEAL; in kern_shm_open2()
1174 initial_seals &= ~F_SEAL_SEAL; in kern_shm_open2()
1197 if ((initial_seals & ~F_SEAL_SEAL) != 0) in kern_shm_open2()
1301 if ((shmfd->shm_seals & F_SEAL_SEAL) != 0 && in kern_shm_open2()
1957 if ((shmfd->shm_seals & F_SEAL_SEAL) != 0) { in shm_add_seals()
/freebsd/contrib/capsicum-test/
H A Dlinux.cc1455 #define F_SEAL_SEAL 0x0001 /* prevent further seals from being set */ in TEST() macro
/freebsd/sys/compat/linux/
H A Dlinux_file.c67 BITMAP_1t1_LINUX(F_SEAL_SEAL),