Lines Matching defs:shstrtab
178 char *shstrtab;
188 shstrtab = NULL;
225 shstrtab = kmem_alloc(shstrsz, KM_NOSLEEP);
226 if (shstrtab == NULL) {
227 PRINTF("unable to allocate memory for .shstrtab\n");
230 DPRINTF("reading 0x%x bytes of .shstrtab at 0x%x\n",
233 shstrtab);
263 if (strcmp(shstrtab + sh[i].sh_name, ".symtab") == 0)
265 else if (strcmp(shstrtab + sh[i].sh_name, ".strtab") == 0)
349 DPRINTF("ksyms .shstrtab\n");
350 kloader_copy(kv, shstrtab, shstrsz);
422 if (shstrtab != NULL)
423 kmem_free(shstrtab, shstrsz);