Lines Matching defs:info

243 	audio_info_t	*info;
251 info = &proc->p_info;
258 prinfo = &info->play;
279 prinfo = &info->record;
298 info->output_muted = B_FALSE;
300 info->hw_features = 0;
301 info->sw_features = 0;
302 info->sw_features_enabled = 0;
306 info->hw_features |= AUDIO_HWFEATURE_PLAY;
308 info->hw_features |= AUDIO_HWFEATURE_RECORD;
310 info->hw_features |= AUDIO_HWFEATURE_DUPLEX;
569 audio_info_t *info;
573 info = &proc->p_info;
580 info->play.sample_rate = auclnt_get_rate(sp);
581 info->play.channels = auclnt_get_channels(sp);
582 devaudio_decompose_format(&info->play, auclnt_get_format(sp));
584 info->play.gain =
586 info->play.pause = auclnt_is_paused(sp);
587 info->play.active = auclnt_is_running(sp);
588 info->play.samples = auclnt_get_samples(sp);
589 info->play.error = auclnt_get_errors(sp) ? B_TRUE : B_FALSE;
590 info->output_muted = auclnt_get_muted(sp);
592 info->play.encoding = AUDIO_ENCODING_NONE;
593 info->play.precision = 0;
594 info->play.sample_rate = 0;
595 info->play.pause = B_FALSE;
596 info->play.active = B_FALSE;
597 info->play.error = B_FALSE;
598 info->play.samples = 0;
604 info->record.sample_rate = auclnt_get_rate(sp);
605 info->record.channels = auclnt_get_channels(sp);
606 devaudio_decompose_format(&info->record, auclnt_get_format(sp));
608 info->record.gain =
610 info->record.pause = auclnt_is_paused(sp);
611 info->record.active = auclnt_is_running(sp);
612 info->record.samples = auclnt_get_samples(sp);
613 info->record.error = auclnt_get_errors(sp) ? B_TRUE : B_FALSE;
615 info->record.encoding = AUDIO_ENCODING_NONE;
616 info->record.precision = 0;
617 info->record.sample_rate = 0;
618 info->record.pause = B_FALSE;
619 info->record.active = B_FALSE;
620 info->record.error = B_FALSE;
621 info->record.samples = 0;