Searched refs:vdf (Results 1 – 5 of 5) sorted by relevance
/illumos-gate/usr/src/cmd/sgs/libld/common/ |
H A D | version.c | 602 Verdef *vdf; in ld_vers_def_process() local 620 vdf = (Verdef *)isp->is_indata->d_buf; in ld_vers_def_process() 627 if (vdf->vd_version > VER_DEF_CURRENT) in ld_vers_def_process() 629 ifl->ifl_name, vdf->vd_version, VER_DEF_CURRENT); in ld_vers_def_process() 647 vdf = (Verdef *)((uintptr_t)vdf + vdf->vd_next)) { in ld_vers_def_process() 651 Half cnt = vdf->vd_cnt; in ld_vers_def_process() 652 Half ndx = vdf->vd_ndx; in ld_vers_def_process() 653 Verdaux *vdap = (Verdaux *)((uintptr_t)vdf + in ld_vers_def_process() 654 vdf->vd_aux); in ld_vers_def_process() 674 ivdp->vd_flags = vdf->vd_flags; in ld_vers_def_process() [all …]
|
H A D | update.c | 2681 Verdef *vdf, *_vdf; in update_overdef() local 2725 _vdf = vdf = (Verdef *)ofl->ofl_osverdef->os_outdata->d_buf; in update_overdef() 2736 _vdap = vdap = (Verdaux *)(vdf + 1); in update_overdef() 2738 vdf->vd_version = VER_DEF_CURRENT; in update_overdef() 2739 vdf->vd_flags = vdp->vd_flags & MSK_VER_USER; in update_overdef() 2740 vdf->vd_ndx = vdp->vd_ndx; in update_overdef() 2741 vdf->vd_hash = vdp->vd_hash; in update_overdef() 2769 vdf->vd_aux = (Word)((uintptr_t)(vdf + 1) - (uintptr_t)vdf); in update_overdef() 2770 vdf->vd_cnt = cnt; in update_overdef() 2777 _vdf = vdf; in update_overdef() [all …]
|
/illumos-gate/usr/src/cmd/sgs/pvs/common/ |
H A D | pvs.c | 810 GElf_Verdef *vdf = def->c_data->d_buf; in gvers_def() local 822 if (vdf->vd_version > VER_DEF_CURRENT) { in gvers_def() 824 vdf->vd_version, VER_DEF_CURRENT); in gvers_def() 839 vdf = (GElf_Verdef *)((uintptr_t)vdf + vdf->vd_next)) { in gvers_def() 840 GElf_Half cnt = vdf->vd_cnt; in gvers_def() 841 GElf_Half ndx = vdf->vd_ndx; in gvers_def() 845 vdap = (GElf_Verdaux *)((uintptr_t)vdf + vdf->vd_aux); in gvers_def() 854 vdp->vd_flags = vdf->vd_flags | FLG_VER_AVAIL; in gvers_def()
|
/illumos-gate/usr/src/cmd/sgs/rtld/common/ |
H A D | elf.c | 514 Verdef *vdf = VERDEF(nlmp); in elf_verify_vers() local 535 vdf = (Verdef *)((Xword)vdf + vdf->vd_next)) { in elf_verify_vers() 538 if (vnap->vna_hash != vdf->vd_hash) in elf_verify_vers() 541 vdap = (Verdaux *)((Xword)vdf + vdf->vd_aux); in elf_verify_vers()
|
/illumos-gate/usr/src/cmd/sgs/elfdump/common/ |
H A D | elfdump.c | 2124 version_def(Verdef *vdf, Word vdf_num, Cache *vcache, Cache *scache, in version_def() argument 2133 vdf = (Verdef *)((uintptr_t)vdf + vdf->vd_next)) { in version_def() 2136 Half vcnt = vdf->vd_cnt - 1; in version_def() 2137 Half ndx = vdf->vd_ndx; in version_def() 2138 Verdaux *vdap = (Verdaux *)((uintptr_t)vdf + vdf->vd_aux); in version_def() 2153 conv_ver_flags(vdf->vd_flags, 0, &ver_flags_buf)); in version_def()
|