HomeSort by: relevance | last modified time | path
    Searched defs:exechdrp (Results 1 - 4 of 4) sorted by relevancy

  /src/usr.sbin/mdsetimage/
exec_ecoff.c 51 const struct ecoff_exechdr *exechdrp; local in function:check_ecoff
56 if (check(0, sizeof *exechdrp))
58 exechdrp = (const struct ecoff_exechdr *)&mappedfile[0];
60 if (ECOFF_BADMAG(exechdrp))
71 const struct ecoff_exechdr *exechdrp; local in function:findoff_ecoff
75 exechdrp = (const struct ecoff_exechdr *)&mappedfile[0];
77 if (exechdrp->a.text_start <= vmaddr &&
78 vmaddr < (exechdrp->a.text_start + exechdrp->a.tsize))
79 *fileoffp = vmaddr - exechdrp->a.text_start
    [all...]
exec_coff.c 54 const struct coff_exechdr *exechdrp; local in function:check_coff
59 if (check(0, sizeof *exechdrp))
61 exechdrp = (const struct coff_exechdr *)&mappedfile[0];
63 if (COFF_BADMAG(&(exechdrp->f)))
74 const struct coff_exechdr *exechdrp; local in function:findoff_coff
78 exechdrp = (const struct coff_exechdr *)&mappedfile[0];
88 if ((u_long)exechdrp->a.a_tstart <= vmaddr &&
89 vmaddr < (u_long)(exechdrp->a.a_tstart + exechdrp->a.a_tsize))
90 *fileoffp = vmaddr - exechdrp->a.a_tstart
    [all...]
  /src/lib/libc/gen/
nlist_ecoff.c 68 const struct ecoff_exechdr *exechdrp; local in function:__fdnlist_ecoff
108 if (check(0, sizeof *exechdrp))
110 exechdrp = (const void *)mappedfile;
112 if (ECOFF_BADMAG(exechdrp))
118 symhdroff = exechdrp->f.f_symptr;
119 symhdrsize = exechdrp->f.f_nsyms;
  /src/usr.sbin/kvm_mkdb/
nlist_ecoff.c 84 struct ecoff_exechdr *exechdrp; local in function:create_knlist_ecoff
128 if (check(0, sizeof *exechdrp))
130 exechdrp = (struct ecoff_exechdr *)&mappedfile[0];
132 if (ECOFF_BADMAG(exechdrp))
143 symhdroff = exechdrp->f.f_symptr;
144 symhdrsize = exechdrp->f.f_nsyms;
234 if (exechdrp->a.text_start <= vma &&
235 vma < (exechdrp->a.text_start + exechdrp->a.tsize))
236 vma = vma - exechdrp->a.text_start
    [all...]

Completed in 35 milliseconds