Searched refs:auxv_t (Results 26 - 50 of 54) sorted by relevance

123

/opensolaris-onvv-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_kproc.c119 auxv_t *kp_auxv; /* Auxv array from u-area */
153 auxv_t *auxp;
422 mdb_free(kp->kp_auxv, kp->kp_nauxv * sizeof (auxv_t));
879 kp_auxv(mdb_tgt_t *t, const auxv_t **auxvp)
950 int (*f_auxv)(uintptr_t, auxv_t *);
1014 kp->kp_auxv = mdb_alloc(sizeof (auxv_t) * kp->kp_nauxv, UM_SLEEP);
H A Dmdb_proc.c4594 pt_auxv(mdb_tgt_t *t, const auxv_t **auxvp)
5020 const auxv_t *auxp, *auxv = NULL;
5030 return (sizeof (auxv_t) * auxn);
5035 nbytes = MIN(nbytes, sizeof (auxv_t) * auxn);
5338 "procfs auxv_t array", pt_xd_auxv);
/opensolaris-onvv-gate/usr/src/lib/madv/common/
H A Dmadv.c166 static auxv_t auxb;
175 while (read(fd, &auxb, sizeof (auxv_t)) == sizeof (auxv_t)) {
/opensolaris-onvv-gate/usr/src/cmd/sgs/rtld.4.x/
H A Drtld.4.x.c237 auxv_t *ap; /* working aux pointer */
354 for (ap = (auxv_t *)addr; ap->a_type != AT_NULL; ap++)
/opensolaris-onvv-gate/usr/src/lib/libproc/common/
H A Dlibproc.h508 extern const auxv_t *Pgetauxvec(struct ps_prochandle *);
646 extern int proc_get_auxv(pid_t, auxv_t *, int);
H A DPcontrol.h216 auxv_t *auxv; /* the process's aux vector */
H A Dllib-lproc229 const auxv_t *Pgetauxvec(struct ps_prochandle *Pr);
230 ps_err_e ps_pauxv(struct ps_prochandle *Pr, const auxv_t **aux);
345 int proc_get_auxv(pid_t pid, auxv_t *pauxv, int naux);
H A DPsymtab.c881 statb.st_size >= sizeof (auxv_t) &&
882 (P->auxv = malloc(statb.st_size + sizeof (auxv_t))) != NULL) {
884 (naux /= sizeof (auxv_t)) < 1) {
904 auxv_t *auxv;
924 const auxv_t *
927 static const auxv_t empty = { AT_NULL, 0L };
H A DPcore.c525 if ((P->auxv = malloc(sizeof (auxv_t) * (n + 1))) == NULL)
533 n = nbytes / sizeof (auxv_t);
534 nbytes = n * sizeof (auxv_t);
536 if ((P->auxv = malloc(nbytes + sizeof (auxv_t))) == NULL)
H A DP32ton.c171 auxv_32_to_n(const auxv32_t *src, auxv_t *dst)
545 auxv_n_to_32(const auxv_t *src, auxv32_t *dst)
/opensolaris-onvv-gate/usr/src/cmd/ptools/pargs/
H A Dpargs.c89 auxv_t *pd_auxv;
821 const auxv_t *auxvp;
833 datap->pd_auxv = safe_zalloc(i * sizeof (auxv_t));
834 bcopy(auxvp, datap->pd_auxv, i * sizeof (auxv_t));
1216 const auxv_t *pa;
/opensolaris-onvv-gate/usr/src/cmd/sgs/rtld/common/
H A D_rtld.h781 extern int rtld_getopt(char **, char ***, auxv_t **, Word *,
787 extern Rt_map *setup(char **, auxv_t *, Word, char *, int, char *,
H A Dutil.c215 stack_cleanup(char **argv, char ***envp, auxv_t **auxv, int rmcnt)
221 auxv_t *oauxv, *nauxv;
254 nauxv = (auxv_t *)&nenvp[ndx];
255 oauxv = (auxv_t *)&oenvp[ndx];
2201 rtld_getopt(char **argv, char ***envp, auxv_t **auxv, Word *lmflags,
H A Dsetup.c191 setup(char **envp, auxv_t *auxv, Word _flags, char *_platform, int _syspagsz,
/opensolaris-onvv-gate/usr/src/lib/libdtrace_jni/common/
H A Ddtrace_jni.c363 * The use of static auxv_t makes the MT-level unsafe. The caller is expected
370 static auxv_t auxb;
379 while (read(fd, &auxb, sizeof (auxv_t)) == sizeof (auxv_t)) {
/opensolaris-onvv-gate/usr/src/cmd/sgs/liblddbg/common/
H A Dllib-llddbg181 void Dbg32_file_ldso(Rt_map *, char **, auxv_t *, const char *, Aliste);
182 void Dbg64_file_ldso(Rt_map *, char **, auxv_t *, const char *, Aliste);
H A Dfiles.c120 Dbg_file_ldso(Rt_map *lmp, char **envp, auxv_t *auxv, const char *lmid,
/opensolaris-onvv-gate/usr/src/uts/common/os/
H A Dbrand.c875 auxv_t auxflags_auxv;
905 auxv_t brand_auxv[] = {
H A Dexec.c1725 auxv_t **a = (auxv_t **)auxvpp;
/opensolaris-onvv-gate/usr/src/cmd/mdb/common/modules/mdb_ks/
H A Dmdb_ks.c1367 mdb_kproc_auxv(uintptr_t proc, auxv_t *auxv)
1376 sizeof (auxv_t) * __KERN_NAUXV_IMPL);
/opensolaris-onvv-gate/usr/src/uts/common/fs/proc/
H A Dprioctl.c194 auxv_t auxv[__KERN_NAUXV_IMPL];
1242 __KERN_NAUXV_IMPL * sizeof (auxv_t));
1245 __KERN_NAUXV_IMPL * sizeof (auxv_t)))
1467 auxv_t *auxp;
1757 auxv_t auxv[__KERN_NAUXV_IMPL];
3304 auxv_t *auxp;
/opensolaris-onvv-gate/usr/src/cmd/sgs/include/
H A Ddebug.h866 extern void Dbg_file_ldso(Rt_map *, char **, auxv_t *, const char *,
/opensolaris-onvv-gate/usr/src/cmd/sgs/librtld_db/common/
H A Drd_elf.c177 const auxv_t *auxvp = NULL;
/opensolaris-onvv-gate/usr/src/cmd/truss/
H A Dactions.c408 auxv_t auxv[32];
/opensolaris-onvv-gate/usr/src/psm/stand/boot/common/
H A Dreadfile.c141 typedef auxv_t auxv32_t;

Completed in 243 milliseconds

123