Searched refs:mincore (Results 1 - 16 of 16) sorted by relevance

/freebsd-13-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_mincore.c79 static const char path[] = "mincore";
91 ATF_REQUIRE(mincore(addr, npgs * page, vec) == 0);
112 atf_tc_set_md_var(tc, "descr", "Test errors from mincore(2)");
127 ATF_REQUIRE_ERRNO(EINVAL, mincore(map, 0, vec) == -1);
131 ATF_REQUIRE_ERRNO(ENOMEM, mincore(0, page, vec) == -1);
134 ATF_REQUIRE_ERRNO(EFAULT, mincore(map, page, (void *)-1) == -1);
143 atf_tc_set_md_var(tc, "descr", "Test page residency with mincore(2)");
/freebsd-13-stable/lib/libc/tests/sys/
H A Dbrk_test.c128 error = mincore(n, PAGE_SIZE, &v);
130 "mincore: %s", strerror(errno));
/freebsd-13-stable/contrib/capsicum-test/
H A Dsyscalls.h30 return mincore(addr, length, (char*)vec);
204 #define mincore_ mincore
/freebsd-13-stable/sys/kern/
H A Dcapabilities.conf430 mincore
/freebsd-13-stable/sys/sys/
H A Dsyscall.mk66 mincore.o \
H A Dmman.h175 * Return bits from mincore
327 int mincore(const void *, size_t, char *);
/freebsd-13-stable/sys/powerpc/powerpc/
H A Dpmap_dispatch.c171 DEFINE_PMAP_IFUNC(int, mincore, (pmap_t, vm_offset_t, vm_paddr_t *));
/freebsd-13-stable/sys/powerpc/include/
H A Dmmuvar.h160 pmap_mincore_t mincore; member in struct:pmap_funcs
/freebsd-13-stable/tests/sys/posixshm/
H A Dposixshm_test.c1024 error = mincore(addr, ps[i], vec);
1025 ATF_REQUIRE_MSG(error == 0, "mincore failed; errno=%d", errno);
1124 /* For mincore(). */
1188 ATF_REQUIRE(mincore(addr, ps[i], vec) == 0);
1513 if (mincore(addr, PAGE_SIZE, &v) != 0)
1533 if (mincore(addr, PAGE_SIZE, &v) == 0)
1556 if (mincore(addr, PAGE_SIZE, &v) != 0)
1662 ATF_REQUIRE_MSG(mincore(addr, ps[psind], vec) == 0,
1663 "mincore failed; error=%d", errno);
/freebsd-13-stable/lib/libc/sys/
H A DMakefile.inc234 mincore.2 \
/freebsd-13-stable/contrib/sqlite3/
H A DMakefile.msc911 LTLINKOPTS = $(LTLINKOPTS) mincore.lib
/freebsd-13-stable/sys/powerpc/aim/
H A Dmmu_oea.c361 .mincore = moea_mincore,
H A Dmmu_oea64.c463 .mincore = moea64_mincore,
H A Dmmu_radix.c502 .mincore = mmu_radix_mincore,
/freebsd-13-stable/sys/powerpc/booke/
H A Dpmap.c375 .mincore = mmu_booke_mincore,
2342 * Perform the pmap work for mincore.
/freebsd-13-stable/sys/i386/i386/
H A Dpmap.c5738 * Perform the pmap work for mincore(2). If the page is not both referenced and
5743 __CONCAT(PMTYPE, mincore)(pmap_t pmap, vm_offset_t addr, vm_paddr_t *pap)
6364 PMM(mincore)

Completed in 303 milliseconds