/src/include/ |
kvm.h | 82 kvm_t *kvm_openfiles(const char *, const char *, const char *, int, char *);
|
/src/lib/libkvm/ |
Makefile | 54 MLINKS+=kvm_open.3 kvm_openfiles.3 kvm_open.3 kvm_close.3
|
kvm.c | 725 kvm_openfiles(const char *uf, const char *mf, const char *sf, function in typeref:typename:kvm_t *
|
/src/usr.sbin/kgmon/ |
kgmon.c | 223 kvp->kd = kvm_openfiles(sys, kmemf, NULL, openmode, errbuf); 227 kvp->kd = kvm_openfiles(sys, kmemf, NULL, O_RDONLY, 231 errx(EXIT_FAILURE, "kvm_openfiles: %s", errbuf);
|
/src/bin/ps/ |
ps.c | 406 kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, errbuf); 409 kd = kvm_openfiles(nlistf, memf, swapf, O_RDONLY, errbuf);
|
/src/usr.bin/pmap/ |
main.c | 250 kd = kvm_openfiles(kernel, kmem, NULL, O_RDONLY, errbuf);
|
/src/usr.bin/systat/ |
main.c | 175 * duration of the kvm_openfiles() call. 182 kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
|
/src/sys/arch/atari/stand/installboot/ |
installboot.c | 209 kd_kern = kvm_openfiles(NULL, NULL, NULL, O_RDONLY, errbuf); 211 errx(EXIT_FAILURE, "kvm_openfiles: %s", errbuf);
|
/src/usr.bin/nfsstat/ |
nfsstat.c | 160 if ((kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf)) 162 errx(1, "kvm_openfiles: %s", errbuf);
|
/src/usr.sbin/trpt/ |
trpt.c | 222 kd = kvm_openfiles(kernel, core, NULL, O_RDONLY, errbuf);
|
/src/sbin/savecore/ |
savecore.c | 307 kd_kern = kvm_openfiles(kernel, NULL, NULL, O_RDONLY, errbuf); 309 syslog(LOG_ERR, "%s: kvm_openfiles: %s", kernel, errbuf); 366 kd_dump = kvm_openfiles(kernel, ddname, NULL, O_RDWR, errbuf); 368 syslog(LOG_ERR, "%s: kvm_openfiles: %s", kernel, errbuf);
|
/src/usr.bin/w/ |
w.c | 199 if ((kd = kvm_openfiles(nlistf, memf, NULL,
|
/src/usr.bin/netstat/ |
main.c | 347 k = kvm_openfiles(nf, mf, NULL, O_RDONLY, errbuf);
|
/src/usr.bin/pkill/ |
pkill.c | 283 kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, buf);
|
/src/usr.sbin/pstat/ |
pstat.c | 245 * duration of the kvm_openfiles() call. 254 if ((kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, buf)) == 0) 255 errx(1, "kvm_openfiles: %s", buf);
|
/src/usr.bin/vmstat/ |
vmstat.c | 423 kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, errbuf); 425 kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
|
/src/usr.bin/fstat/ |
fstat.c | 274 * duration of the kvm_openfiles() call. 281 if ((kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, buf)) == NULL)
|