Searched refs:auxvp (Results 1 – 11 of 11) sorted by relevance
/titanic_50/usr/src/lib/brand/shared/librtld_db/common/ |
H A D | brand_librtld_db.c | 138 const auxv_t *auxvp = NULL; in brand_ldb_getauxval32() local 140 if (ps_pauxv(php, &auxvp) != PS_OK) in brand_ldb_getauxval32() 143 while (auxvp->a_type != AT_NULL) { in brand_ldb_getauxval32() 144 if (auxvp->a_type == type) in brand_ldb_getauxval32() 145 return ((uint32_t)(uintptr_t)auxvp->a_un.a_ptr); in brand_ldb_getauxval32() 146 auxvp++; in brand_ldb_getauxval32()
|
/titanic_50/usr/src/cmd/sgs/librtld_db/demo/common/ |
H A D | ps.c | 74 auxv_t *auxvp; in get_ldbase() local 102 auxvp = auxvptr; in get_ldbase() 103 if (auxvp->a_type == AT_BASE) { in get_ldbase() 107 ((uintptr_t)((auxv32_t *)auxvp)-> in get_ldbase() 111 procp->pp_ldsobase = auxvp->a_un.a_val; in get_ldbase() 112 } else if (auxvp->a_type == AT_PHDR) { in get_ldbase() 116 ((uintptr_t)((auxv32_t *)auxvp)-> in get_ldbase() 120 procp->pp_execphdr = auxvp->a_un.a_val; in get_ldbase() 241 ps_pauxv(struct ps_prochandle *ph, const auxv_t **auxvp) in ps_pauxv() argument 243 *auxvp = ph->pp_auxvp; in ps_pauxv()
|
/titanic_50/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_pservice.c | 231 ps_pauxv(struct ps_prochandle *P, const auxv_t **auxvp) in ps_pauxv() argument 236 return (ps_ops.ps_pauxv(P, auxvp)); in ps_pauxv() 238 if (mdb_tgt_auxv(t, auxvp) != 0) in ps_pauxv()
|
H A D | mdb_target_impl.h | 137 int (*t_auxv)(mdb_tgt_t *, const auxv_t **auxvp);
|
H A D | mdb_kproc.c | 879 kp_auxv(mdb_tgt_t *t, const auxv_t **auxvp) in kp_auxv() argument 882 *auxvp = kp->kp_auxv; in kp_auxv()
|
H A D | mdb_target.c | 386 mdb_tgt_auxv(mdb_tgt_t *t, const auxv_t **auxvp) in mdb_tgt_auxv() argument 388 return (t->t_ops->t_auxv(t, auxvp)); in mdb_tgt_auxv()
|
H A D | mdb_proc.c | 4651 pt_auxv(mdb_tgt_t *t, const auxv_t **auxvp) in pt_auxv() argument 4654 *auxvp = Pgetauxvec(t->t_pshandle); in pt_auxv()
|
/titanic_50/usr/src/cmd/sgs/librtld_db/common/ |
H A D | rd_elf.c | 177 const auxv_t *auxvp = NULL; in _rd_reset32() local 211 if (ps_pauxv(php, &auxvp) != PS_OK) { in _rd_reset32() 218 if (auxvp != NULL) { in _rd_reset32() 220 while (auxvp->a_type != AT_NULL) { in _rd_reset32() 221 if (auxvp->a_type == AT_SUN_LDDATA) { in _rd_reset32() 223 rap->rd_rdebug = (uintptr_t)auxvp->a_un.a_ptr; in _rd_reset32() 229 auxvp++; in _rd_reset32()
|
/titanic_50/usr/src/cmd/ptools/pargs/ |
H A D | pargs.c | 865 const auxv_t *auxvp; in get_auxv() local 870 if (ps_pauxv(datap->pd_proc, &auxvp) != PS_OK) in get_auxv() 873 for (i = 0; auxvp[i].a_type != AT_NULL; i++) in get_auxv() 878 bcopy(auxvp, datap->pd_auxv, i * sizeof (auxv_t)); in get_auxv()
|
/titanic_50/usr/src/cmd/mdb/common/modules/genunix/ |
H A D | gcore.c | 1578 Pread_aux_gcore(struct ps_prochandle *P, auxv_t **auxvp, int *nauxp, void *data) in Pread_aux_gcore() argument 1587 *auxvp = NULL; in Pread_aux_gcore() 1594 *auxvp = auxv; in Pread_aux_gcore()
|
/titanic_50/usr/src/lib/libproc/common/ |
H A D | Pcontrol.c | 135 Pread_aux_live(struct ps_prochandle *P, auxv_t **auxvp, int *nauxp, void *data) in Pread_aux_live() argument 163 *auxvp = auxv; in Pread_aux_live()
|