Symbol: unload
sys/arch/alpha/common/bus_dma.c
465
DMA_COUNT_DECL(unload);
sys/arch/alpha/common/bus_dma.c
471
DMA_COUNT(unload);
sys/arch/alpha/common/sgmap_typedep.c
591
DMA_COUNT_DECL(unload);
sys/arch/alpha/common/sgmap_typedep.c
598
DMA_COUNT(unload);
sys/arch/arm/nvidia/tegra_drm.c
64
.unload = tegra_drm_unload,
sys/arch/arm/rockchip/rk_drm.c
89
.unload = rk_drm_unload,
sys/arch/arm/sunxi/sunxi_drm.c
99
.unload = sunxi_drm_unload,
sys/arch/arm/ti/ti_lcdc.c
80
.unload = tilcdc_unload,
sys/dev/ic/i82557.c
2076
fxp_add_rfabuf(struct fxp_softc *sc, bus_dmamap_t rxmap, int unload)
sys/dev/ic/i82557.c
2092
if (unload)
sys/dev/pci/ld_virtio.c
492
bool unload = false;
sys/dev/pci/ld_virtio.c
531
unload = true;
sys/dev/pci/ld_virtio.c
589
if (unload) {
sys/dev/sdmmc/sdmmc_mem.c
2222
goto unload;
sys/dev/sdmmc/sdmmc_mem.c
2231
goto unload;
sys/dev/sdmmc/sdmmc_mem.c
2235
unload:
sys/dev/sdmmc/sdmmc_mem.c
2475
goto unload;
sys/dev/sdmmc/sdmmc_mem.c
2484
goto unload;
sys/dev/sdmmc/sdmmc_mem.c
2488
unload:
sys/kern/kern_module.c
1971
void (*unload)(struct module *))
sys/kern/kern_module.c
1978
modcb->modcb_unload = unload;
tests/modules/t_modctl.c
402
unload("k_helper", true);
tests/modules/t_modctl.c
422
unload("k_helper", true);
tests/modules/t_modctl.c
442
unload("k_helper", true);
tests/modules/t_modctl.c
478
unload("k_helper", true);
tests/modules/t_modctl.c
479
unload("k_helper2", true);
tests/modules/t_modctl.c
508
unload("k_helper", true);
tests/modules/t_modctl.c
528
ATF_CHECK(unload("", false) == ENOENT);
tests/modules/t_modctl.c
529
ATF_CHECK(unload("non-existent.kmod", false) == ENOENT);
tests/modules/t_modctl.c
530
ATF_CHECK(unload("k_helper.kmod", false) == ENOENT);
tests/modules/t_modctl.c
533
unload("k_helper", true);
tests/modules/t_modctl.c
58
static int unload(const char *, bool);