Home
last modified time | relevance | path

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

/freebsd-14-stable/tests/sys/posixshm/
HDmemfd_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-14-stable/sys/sys/
HDfcntl.h275 #define F_SEAL_SEAL 0x0001 /* Prevent adding sealings */ macro
/freebsd-14-stable/sys/kern/
HDuipc_shm.c1188 initial_seals = F_SEAL_SEAL; in kern_shm_open2()
1190 initial_seals &= ~F_SEAL_SEAL; in kern_shm_open2()
1213 if ((initial_seals & ~F_SEAL_SEAL) != 0) in kern_shm_open2()
1321 if ((shmfd->shm_seals & F_SEAL_SEAL) != 0 && in kern_shm_open2()
1981 if ((shmfd->shm_seals & F_SEAL_SEAL) != 0) { in shm_add_seals()
/freebsd-14-stable/contrib/capsicum-test/
HDlinux.cc1455 #define F_SEAL_SEAL 0x0001 /* prevent further seals from being set */ in TEST() macro
/freebsd-14-stable/sys/compat/linux/
HDlinux_file.c67 BITMAP_1t1_LINUX(F_SEAL_SEAL),