Searched refs:naux (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libproc/common/
H A Dproc_get_info.c200 * 'naux' is the number of aux entries in the caller's buffer.
202 * the process (less than or equal to 'naux') or -1 on failure.
205 proc_get_auxv(pid_t pid, auxv_t *pauxv, int naux) argument
214 if ((rv = read(fd, pauxv, naux * sizeof (auxv_t))) >= 0)
H A DPcontrol.c143 ssize_t naux; local
156 if ((naux = read(fd, auxv, statb.st_size)) < 0 ||
157 (naux /= sizeof (auxv_t)) < 1) {
162 auxv[naux].a_type = AT_NULL;
163 auxv[naux].a_un.a_val = 0L;
166 *nauxp = (int)naux;
H A Dllib-lproc350 int proc_get_auxv(pid_t pid, auxv_t *pauxv, int naux);
/illumos-gate/usr/src/cmd/truss/
H A Dactions.c409 int naux; local
412 naux = proc_get_auxv(pid, auxv, 32);
413 for (i = 0; i < naux; i++) {
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dgcore.c1582 int naux; local
1584 naux = __KERN_NAUXV_IMPL;
1585 auxv = calloc(naux + 1, sizeof (*auxv));
1592 (void) memcpy(auxv, p->p_user.u_auxv, naux * sizeof (*auxv));
1595 *nauxp = naux;
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dvdev.c3016 uint_t naux; local
3034 ZPOOL_CONFIG_L2CACHE, &aux, &naux) != 0) {
3036 ZPOOL_CONFIG_SPARES, &aux, &naux) == 0);
3039 ASSERT(c < naux);

Completed in 82 milliseconds