Home
last modified time | relevance | path

Searched refs:racp (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/liblddbg/common/
H A Dstatistics.c97 Rel_aux_cachebuf *racp; in rel_aux_cache_statistics() local
104 for (APLIST_TRAVERSE(ofl->ofl_relaux, idx, racp)) { in rel_aux_cache_statistics()
105 desc_cnt += racp->rac_end - racp->rac_arr; in rel_aux_cache_statistics()
106 desc_used += racp->rac_free - racp->rac_arr; in rel_aux_cache_statistics()
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Daudit.c817 Audit_client *racp, *dacp; in _audit_pltenter() local
824 if ((racp = _audit_client(AUDINFO(rlmp), almp)) == NULL) in _audit_pltenter()
828 if (((racp->ac_flags & FLG_AC_BINDFROM) == 0) || in _audit_pltenter()
837 &(racp->ac_cookie), &(dacp->ac_cookie), regs, in _audit_pltenter()
903 Audit_client *racp, *dacp; in _audit_pltexit() local
909 if ((racp = _audit_client(AUDINFO(rlmp), almp)) == NULL) in _audit_pltexit()
913 if (((racp->ac_flags & FLG_AC_BINDFROM) == 0) || in _audit_pltexit()
921 &(racp->ac_cookie), &(dacp->ac_cookie), in _audit_pltexit()
982 Audit_client *racp, *dacp; in _audit_symbind() local
992 (racp->ac_flags & FLG_AC_BINDFROM) == 0) in _audit_symbind()
[all …]
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Drelocate.c551 Rel_aux_cachebuf *racp = NULL; in ld_add_rel_aux() local
559 racp = ofl->ofl_relaux->apl_data[ in ld_add_rel_aux()
562 if (racp && (racp->rac_free >= racp->rac_end)) in ld_add_rel_aux()
563 racp = NULL; in ld_add_rel_aux()
565 if (racp == NULL) { in ld_add_rel_aux()
573 if (((racp = libld_malloc(size)) == NULL) || in ld_add_rel_aux()
574 (aplist_append(&ofl->ofl_relaux, racp, AL_CNT_OFL_RELS) == in ld_add_rel_aux()
578 racp->rac_free = racp->rac_arr; in ld_add_rel_aux()
579 racp->rac_end = racp->rac_arr + RELAUX_CACHEBUF_ALLOC; in ld_add_rel_aux()
583 rdesc->rel_aux = racp->rac_free++; in ld_add_rel_aux()