Symbol: modctl
lib/librumphijack/hijack.c
2471
int modctl(int, void *);
sbin/modload/modload_hostops.c
40
.op_modctl = modctl,
sbin/modload/prog_ops.h
46
#define prog_modctl modctl
sbin/modstat/modstat_hostops.c
40
.op_modctl = modctl,
sbin/modstat/prog_ops.h
46
#define prog_modctl modctl
sbin/modunload/modunload_hostops.c
40
.op_modctl = modctl,
sbin/modunload/prog_ops.h
46
#define prog_modctl modctl
sys/rump/librump/rumpkern/rump_syscalls.c
2729
__weak_alias(modctl,rump___sysimpl_modctl);
sys/sys/module.h
271
int modctl(int, void *);
tests/kernel/t_lua.c
73
RL(modctl(MODCTL_STAT, &iov));
tests/lib/libc/stdio/t_fopen.c
299
err = modctl(MODCTL_EXISTS, 0);
tests/lib/libc/stdio/t_fopen.c
325
if (modctl(MODCTL_STAT, &iov) != 0) {
tests/modules/k_helper3/k_helper3.c
84
rv = modctl(MODCTL_LOAD, &ml);
tests/modules/k_helper3/k_helper3.c
97
(void)modctl(MODCTL_UNLOAD, shortname);
tests/modules/t_modctl.c
101
if (modctl(MODCTL_STAT, &iov) != 0) {
tests/modules/t_modctl.c
299
if (modctl(MODCTL_LOAD, &ml) == -1) {
tests/modules/t_modctl.c
325
if (modctl(MODCTL_UNLOAD, __UNCONST(name)) == -1) {
tests/modules/t_modctl.c
343
(void)modctl(MODCTL_UNLOAD, __UNCONST(name));
tests/modules/t_modctl.c
74
err = modctl(MODCTL_EXISTS, 0);
tests/modules/t_ufetchstore.c
78
if (modctl(MODCTL_LOAD, &params) != 0) {
tests/modules/t_ufetchstore.c
96
if (modctl(MODCTL_UNLOAD, module_name) != 0) {
tests/modules/t_x86_pte.c
73
if (modctl(MODCTL_LOAD, &params) != 0)
tests/modules/t_x86_pte.c
79
if (modctl(MODCTL_UNLOAD, module_name) != 0)
tests/modules/ufetchstore/t_ufetchstore.c
78
if (modctl(MODCTL_LOAD, &params) != 0) {
tests/modules/ufetchstore/t_ufetchstore.c
96
if (modctl(MODCTL_UNLOAD, module_name) != 0) {
usr.sbin/autofs/automountd.c
447
error = modctl(MODCTL_LOAD, &args);
usr.sbin/npf/npfctl/npfctl.c
285
if (modctl(MODCTL_LOAD, &args) != 0 && errno != EEXIST) {