/src/sys/stand/efiboot/ |
module.c | 44 TAILQ_HEAD(, boot_module) boot_modules = TAILQ_HEAD_INITIALIZER(boot_modules); 90 TAILQ_FOREACH(bm, &boot_modules, entries) { 105 TAILQ_FOREACH(bm, &boot_modules, entries) { 115 TAILQ_INSERT_TAIL(&boot_modules, bm, entries); 127 TAILQ_FOREACH(bm, &boot_modules, entries) { 129 TAILQ_REMOVE(&boot_modules, bm, entries); 142 while ((bm = TAILQ_FIRST(&boot_modules)) != NULL) { 143 TAILQ_REMOVE(&boot_modules, bm, entries);
|
/src/sys/arch/i386/stand/lib/ |
bootmod.h | 43 extern boot_module_t *boot_modules;
|
exec.c | 128 boot_module_t *boot_modules; variable in typeref:typename:boot_module_t * 241 for (bm = boot_modules; bm != NULL; bm = bm->bm_next) 256 if (boot_modules == NULL) 257 boot_modules = bm; 259 for (bmp = boot_modules; bmp->bm_next; 690 for (bm = boot_modules; bm; bm = bm->bm_next) { 725 for (bm = boot_modules; bm; bm = bm->bm_next) {
|
/src/sys/arch/sandpoint/stand/altboot/ |
main.c | 91 struct boot_module *boot_modules; variable in typeref:struct:boot_module * 486 if ((bmp = boot_modules) == NULL) 487 boot_modules = bm; 533 for (bm = boot_modules; bm != NULL; bm = bm->bm_next) { 563 for (bm = boot_modules; bm != NULL; bm = bm->bm_next) {
|