Searched refs:kfile (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/tests/sys/kern/
H A Dsysctl_kern_proc.c64 struct kinfo_file kfile; local
81 ATF_REQUIRE(sz <= sizeof(kfile));
83 sz = sizeof(kfile);
84 memset(&kfile, 0, sz);
85 ATF_REQUIRE(sysctl(mib, 4, &kfile, &sz, NULL, 0) == 0);
86 ATF_REQUIRE(sz <= sizeof(kfile));
87 ATF_REQUIRE(sz == (u_int)kfile.kf_structsize);
91 ATF_REQUIRE(strcmp(cwd, kfile.kf_path) == 0);
94 ATF_REQUIRE(kfile.kf_type == KF_TYPE_VNODE);
95 ATF_REQUIRE(kfile
142 struct kinfo_file *kfile; local
[all...]
/freebsd-current/lib/libsecureboot/openpgp/
H A Dopgp_key.c280 load_key_file(const char *kfile) argument
286 data = read_file(kfile, &n);
313 char kfile[MAXPATHLEN]; local
318 n = (size_t)snprintf(kfile, sizeof(kfile), "%s/%s", *tp, keyID);
319 if (n >= sizeof(kfile))
321 if (access(kfile, R_OK) == 0) {
322 return (load_key_file(kfile));
H A Dpacket.h66 OpenPGP_key * load_key_file(const char *kfile);
/freebsd-current/contrib/unbound/contrib/
H A Dupdate-anchor.sh155 kfile="$2"
156 do_update $zname $kfile
/freebsd-current/usr.sbin/pmcannotate/
H A Dpmcannotate.c659 "usage: %s [-a] [-h] [-k kfile] [-l lb] pmcraw.out binary\n",
671 char *bin, *exec, *kfile, *ofile; local
681 kfile = NULL;
690 kfile = optarg;
713 if (kfile != NULL && access(kfile, R_OK | F_OK) == -1)
732 if (kfile != NULL)
734 kfile, ofile, tofl);

Completed in 203 milliseconds