/src/sys/arch/i386/stand/pxeboot/ |
devopen.c | 55 struct btinfo_bootpath bibp; variable in typeref:struct:btinfo_bootpath 137 strncpy(bibp.bootpath, filename, sizeof(bibp.bootpath)); 138 BI_ADD(&bibp, BTINFO_BOOTPATH, sizeof(bibp));
|
/src/sys/arch/i386/stand/boot/ |
devopen.c | 117 struct btinfo_bootpath bibp; variable in typeref:struct:btinfo_bootpath 141 strncpy(bibp.bootpath, *file, sizeof(bibp.bootpath)); 142 BI_ADD(&bibp, BTINFO_BOOTPATH, sizeof(bibp));
|
/src/sys/arch/landisk/stand/boot/ |
devopen.c | 90 static struct btinfo_bootpath bibp; local in function:devopen 127 strncpy(bibp.bootpath, *file, sizeof(bibp.bootpath)); 128 BI_ADD(&bibp, BTINFO_BOOTPATH, sizeof(bibp));
|
/src/sys/arch/i386/stand/efiboot/ |
devopen.c | 144 struct btinfo_bootpath bibp; variable in typeref:struct:btinfo_bootpath 185 strncpy(bibp.bootpath, *file, sizeof(bibp.bootpath)); 186 BI_ADD(&bibp, BTINFO_BOOTPATH, sizeof(bibp)); 231 strncpy(bibp.bootpath, *file, sizeof(bibp.bootpath)); 232 BI_ADD(&bibp, BTINFO_BOOTPATH, sizeof(bibp)); 304 strncpy(bibp.bootpath, *file, sizeof(bibp.bootpath)) [all...] |
/src/sys/arch/i386/stand/dosboot/ |
devopen.c | 92 struct btinfo_bootpath bibp; variable in typeref:struct:btinfo_bootpath 119 strncpy(bibp.bootpath, *file, sizeof(bibp.bootpath)); 120 BI_ADD(&bibp, BTINFO_BOOTPATH, sizeof(bibp));
|
/src/sys/arch/x86/x86/ |
x86_machdep.c | 1258 const struct btinfo_bootpath *bibp = lookup_bootinfo(BTINFO_BOOTPATH); local in function:get_booted_kernel 1259 return bibp ? bibp->bootpath : NULL; 1268 struct btinfo_bootpath *bibp; local in function:sysctl_machdep_booted_kernel 1271 bibp = lookup_bootinfo(BTINFO_BOOTPATH); 1272 if (!bibp) 1276 node.sysctl_data = bibp->bootpath; 1277 node.sysctl_size = sizeof(bibp->bootpath);
|
/src/sys/arch/mips/mips/ |
mips_machdep.c | 1756 struct btinfo_bootpath *bibp; local in function:sysctl_machdep_booted_kernel 1759 bibp = lookup_bootinfo(BTINFO_BOOTPATH); 1760 if(!bibp) 1764 node.sysctl_data = bibp->bootpath; 1765 node.sysctl_size = sizeof(bibp->bootpath);
|