/src/sbin/modload/ |
modload_hostops.c | 40 .op_modctl = modctl,
|
prog_ops.h | 46 #define prog_modctl modctl
|
/src/sbin/modstat/ |
modstat_hostops.c | 40 .op_modctl = modctl,
|
prog_ops.h | 46 #define prog_modctl modctl
|
/src/sbin/modunload/ |
modunload_hostops.c | 40 .op_modctl = modctl,
|
prog_ops.h | 46 #define prog_modctl modctl
|
/src/tests/modules/k_helper3/ |
k_helper3.c | 48 * A program that loads a module and returns the errno(2) from modctl(8). 84 rv = modctl(MODCTL_LOAD, &ml); 97 (void)modctl(MODCTL_UNLOAD, shortname);
|
/src/tests/fs/zfs/ |
t_zpool.sh | 54 export RUMPHIJACK=blanket=/dev/zfs:/dk:/jippo,sysctl=yes,modctl=yes
|
/src/tests/modules/ |
t_x86_pte.c | 73 if (modctl(MODCTL_LOAD, ¶ms) != 0) 79 if (modctl(MODCTL_UNLOAD, module_name) != 0)
|
t_modctl.c | 74 err = modctl(MODCTL_EXISTS, 0); 81 "modctl(MODCTL_EXISTS, 0)", errno); 101 if (modctl(MODCTL_STAT, &iov) != 0) { 103 fprintf(stderr, "modctl(MODCTL_STAT) failed: %s\n", 152 * successfully. This implementation uses modctl(2)'s MODCTL_STAT 299 if (modctl(MODCTL_LOAD, &ml) == -1) { 301 fprintf(stderr, "modctl(MODCTL_LOAD, %s), failed: %s\n", 325 if (modctl(MODCTL_UNLOAD, __UNCONST(name)) == -1) { 327 fprintf(stderr, "modctl(MODCTL_UNLOAD, %s) failed: %s\n", 343 (void)modctl(MODCTL_UNLOAD, __UNCONST(name)) [all...] |
t_ufetchstore.c | 78 if (modctl(MODCTL_LOAD, ¶ms) != 0) { 96 if (modctl(MODCTL_UNLOAD, module_name) != 0) {
|
/src/sys/sys/ |
module.h | 247 enum modctl { enum 271 int modctl(int, void *);
|
/src/sys/rump/include/rump/ |
makerumpdefs.sh | 132 getenum ../../../sys/module.h modctl MODCTL
|
/src/tests/lib/libc/stdio/ |
t_fopen.c | 299 err = modctl(MODCTL_EXISTS, 0); 306 "modctl(MODCTL_EXISTS, 0)", errno); 325 if (modctl(MODCTL_STAT, &iov) != 0) { 326 fprintf(stderr, "modctl(MODCTL_STAT) failed: %s\n",
|
/src/lib/libc/sys/ |
Makefile.inc | 139 __mknod50.S mlock.S mlockall.S modctl.S __mount50.S \ 281 madvise.2 mincore.2 minherit.2 mlock.2 mlockall.2 mmap.2 modctl.2 \
|
/src/usr.sbin/autofs/ |
automountd.c | 447 error = modctl(MODCTL_LOAD, &args);
|
/src/usr.sbin/npf/npfctl/ |
npfctl.c | 280 if (modctl(MODCTL_LOAD, &args) != 0 && errno != EEXIST) {
|
/src/tests/modules/ufetchstore/ |
t_ufetchstore.c | 78 if (modctl(MODCTL_LOAD, ¶ms) != 0) { 96 if (modctl(MODCTL_UNLOAD, module_name) != 0) {
|
/src/lib/librumphijack/ |
hijack.c | 388 { DUALCALL_MODCTL, "modctl", RSYS_NAME(MODCTL) }, 877 errx(EXIT_FAILURE, "modctl value should be y(es)/n(o), gave: %s", buf); 907 { modctlparser, "modctl", false }, 2471 int modctl(int, void *); 2473 modctl(int operation, void *argp) function in typeref:typename:int 2478 op_modctl = GETSYSCALL(rump, MODCTL); 2480 op_modctl = GETSYSCALL(host, MODCTL);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 7712 INTERCEPTOR(int, modctl, int operation, void *argp) { 7715 COMMON_INTERCEPTOR_ENTER(ctx, modctl, operation, argp); 7727 ret = REAL(modctl)(operation, argp); 7733 ret = REAL(modctl)(operation, argp); 7741 ret = REAL(modctl)(operation, argp); 7746 ret = REAL(modctl)(operation, argp); 7748 ret = REAL(modctl)(operation, argp); 7752 #define INIT_MODCTL COMMON_INTERCEPT_FUNCTION(modctl)
|
/src/sys/rump/librump/rumpkern/ |
rump_syscalls.c | 2727 __weak_alias(modctl,rump___sysimpl_modctl); 7686 }, /* 246 = modctl */
|