Lines Matching defs:bi
519 struct btinfo_common *bi = (void *)(u_long)bootinfo->entry[i];
520 char *p = alloc(bi->len);
521 memcpy(p, bi, bi->len);
676 struct bi_modulelist_entry *bi;
739 bi = (struct bi_modulelist_entry *)(buf + off);
741 strncpy(bi->path, bm->bm_path, sizeof(bi->path) - 1);
742 bi->base = image_end;
743 bi->len = len;
746 bi->type = BI_MODULE_ELF;
749 bi->type = BI_MODULE_IMAGE;
752 bi->type = BI_MODULE_FS;
757 bi->type = BI_MODULE_RND;
807 struct bi_userconfcommand *bi;
808 bi = (struct bi_userconfcommand *)(buf + off);
809 strncpy(bi->text, uc->uc_text, sizeof(bi->text) - 1);
811 off += sizeof(*bi);