Searched defs:prinfo (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/audio/utilities/
H A Ddevice_ctl.c82 struct audio_prinfo *prinfo; local
86 prinfo = &info.play;
88 prinfo = &info.record;
95 prinfo->sample_rate = hdrp->sample_rate;
96 prinfo->channels = hdrp->channels;
97 prinfo->encoding = hdrp->encoding;
98 prinfo->precision = hdrp->bytes_per_unit * 8;
109 hdrp->sample_rate = prinfo->sample_rate;
110 hdrp->channels = prinfo->channels;
112 hdrp->encoding = prinfo
150 struct audio_prinfo *prinfo; local
[all...]
/illumos-gate/usr/src/uts/common/exec/elf/
H A Delf_notes.c184 priv_impl_info_t prinfo; member in union:__anon187
/illumos-gate/usr/src/cmd/priocntl/
H A Dsubr.c303 psinfo_t prinfo; local
349 if (read(procfd, &prinfo, sizeof (prinfo)) != sizeof (prinfo)) {
372 if (prinfo.pr_lwp.pr_state == 0 || prinfo.pr_nlwp == 0)
378 if (strncmp(clname, prinfo.pr_lwp.pr_clname, PC_CLNMSZ) != 0)
385 if (id == (id_t)prinfo.pr_ppid)
390 if (id == (id_t)prinfo.pr_pgid)
395 if (id == (id_t)prinfo
[all...]
H A Dpriocntl.c481 static psinfo_t prinfo; local
570 if (read(procfd, &prinfo, sizeof (prinfo)) !=
571 sizeof (prinfo)) {
606 if (prinfo.pr_lwp.pr_state == 0 || prinfo.pr_nlwp == 0)
613 itoa((long)prinfo.pr_pid, idstr);
619 itoa((long)prinfo.pr_ppid, idstr);
625 itoa((long)prinfo.pr_pgid, idstr);
631 itoa((long)prinfo
801 static psinfo_t prinfo; local
[all...]
/illumos-gate/usr/src/uts/common/io/audio/impl/
H A Daudio_sun.c145 devaudio_compose_format(audio_prinfo_t *prinfo) argument
147 switch (prinfo->precision) {
149 switch (prinfo->encoding) {
161 if (prinfo->encoding == AUDIO_ENCODING_LINEAR)
165 if (prinfo->encoding == AUDIO_ENCODING_LINEAR)
174 devaudio_decompose_format(audio_prinfo_t *prinfo, int afmt) argument
236 prinfo->encoding = e;
237 prinfo->precision = p;
244 audio_prinfo_t *prinfo; local
258 prinfo
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dgcore.c109 static priv_impl_info_t prinfo; variable
1650 prinfo.priv_infosize;
1665 pp->pr_infosize = prinfo.priv_infosize;
2062 if (mdb_vread(&prinfo, sizeof (prinfo), priv_info_addr) == -1) {
2063 mdb_warn("Failed to read prinfo from %p\n", priv_info_addr);

Completed in 267 milliseconds