Lines Matching defs:shsize
97 size_t shsize;
106 shsize = eh->e_shnum * sizeof(Elf_Shdr);
107 sh = (Elf_Shdr *) malloc(shsize, M_TEMP, M_WAITOK);
108 error = exec_read(l, epp->ep_vp, eh->e_shoff, sh, shsize,
164 size_t shsize;
171 shsize = eh->e_shnum * sizeof(Elf_Shdr);
172 sh = (Elf_Shdr *) malloc(shsize, M_TEMP, M_WAITOK);
173 error = exec_read(l, epp->ep_vp, eh->e_shoff, sh, shsize,
222 size_t shsize;
231 shsize = eh->e_shnum * sizeof(Elf_Shdr);
232 sh = (Elf_Shdr *) malloc(shsize, M_TEMP, M_WAITOK);
233 error = exec_read(l, epp->ep_vp, eh->e_shoff, sh, shsize,
280 size_t shsize;
292 shsize = eh->e_shnum * sizeof(Elf_Shdr);
293 sh = malloc(shsize, M_TEMP, M_WAITOK);
294 error = exec_read(l, epp->ep_vp, eh->e_shoff, sh, shsize,