Home | History | Annotate | Download | only in libkvm

Lines Matching defs:fhead

86 	struct filelist fhead;
92 if (buflen < sizeof(fhead) ||
93 KREAD(kd, (u_long)ofhead, &fhead)) {
97 buflen -= sizeof(fhead);
98 where += sizeof(fhead);
99 (void)memcpy(kd->argspc, &fhead, sizeof(fhead));
104 for (fp = fhead.lh_first; fp != 0; fp = fp->f_list.le_next) {
131 struct filelist fhead;
144 if (st == -1 || size < sizeof(fhead)) {
148 (void)memcpy(&fhead, kd->argspc, sizeof(fhead));
149 fp = (struct file *)(void *)(kd->argspc + sizeof(fhead));
151 for (numfiles = 0; fhead.lh_first && (fp < fplim);
153 fhead.lh_first = fp->f_list.le_next;
172 size = sizeof(fhead) + (numfiles + 10) * sizeof(struct file);