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
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
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
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
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 69 const struct ecoff_exechdr *exechdrp; local
109 if (check(0, sizeof *exechdrp))
111 exechdrp = (const void *)mappedfile;
113 if (ECOFF_BADMAG(exechdrp))
119 symhdroff = exechdrp->f.f_symptr;
120 symhdrsize = exechdrp->f.f_nsyms;
  /src/usr.sbin/kvm_mkdb/
nlist_ecoff.c 84 struct ecoff_exechdr *exechdrp; local
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 15 milliseconds