Lines Matching defs:resp

404 	uint32 resp[2];
412 status = hda_send_verbs(codec, verbs, resp, 2);
419 if ((resp[0] & (STREAM_FLOAT | STREAM_PCM)) != 0) {
420 if (resp[1] & (1 << 0))
422 if (resp[1] & (1 << 1))
424 if (resp[1] & (1 << 2))
426 if (resp[1] & (1 << 3))
428 if (resp[1] & (1 << 4))
430 if (resp[1] & (1 << 5))
432 if (resp[1] & (1 << 6))
434 if (resp[1] & (1 << 7))
436 if (resp[1] & (1 << 8))
438 if (resp[1] & (1 << 9))
440 if (resp[1] & (1 << 10))
442 if (resp[1] & (1 << 11))
445 if (resp[1] & PCM_8_BIT)
447 if (resp[1] & PCM_16_BIT)
449 if (resp[1] & PCM_20_BIT)
451 if (resp[1] & PCM_24_BIT)
453 if (resp[1] & PCM_32_BIT)
456 if ((resp[0] & STREAM_FLOAT) != 0)
458 if ((resp[0] & STREAM_AC3) != 0) {
707 uint32 resp[3];
722 if (hda_send_verbs(audioGroup->codec, verbs, resp, 3) != B_OK)
726 "samples, Beep Generator: %s\n", AUDIO_GROUP_CAP_OUTPUT_DELAY(resp[0]),
727 AUDIO_GROUP_CAP_INPUT_DELAY(resp[0]),
728 AUDIO_GROUP_CAP_BEEPGEN(resp[0]) ? "yes" : "no");
731 GPIO_COUNT_NUM_GPIO(resp[1]), GPIO_COUNT_NUM_GPO(resp[1]),
732 GPIO_COUNT_NUM_GPI(resp[1]), GPIO_COUNT_GPIUNSOL(resp[1]) ? "yes" : "no",
733 GPIO_COUNT_GPIWAKE(resp[1]) ? "yes" : "no");
736 audioGroup->gpio = resp[1];
737 audioGroup->widget_start = SUB_NODE_COUNT_START(resp[2]);
738 audioGroup->widget_count = SUB_NODE_COUNT_TOTAL(resp[2]);
823 if (hda_send_verbs(audioGroup->codec, verbs, resp, 1) == B_OK) {
824 widget.d.pin.capabilities = resp[0];
826 TRACE("\t%s%s\n", PIN_CAP_IS_INPUT(resp[0]) ? "[Input] " : "",
827 PIN_CAP_IS_OUTPUT(resp[0]) ? "[Output]" : "");
834 if (hda_send_verbs(audioGroup->codec, verbs, resp, 1) == B_OK) {
835 widget.d.pin.config = resp[0];
837 get_widget_location(CONF_DEFAULT_LOCATION(resp[0]));
839 kPortConnector[CONF_DEFAULT_CONNECTIVITY(resp[0])],
842 kDefaultDevice[CONF_DEFAULT_DEVICE(resp[0])],
843 kConnectionType[CONF_DEFAULT_CONNTYPE(resp[0])],
844 kJackColor[CONF_DEFAULT_COLOR(resp[0])],
845 CONF_DEFAULT_ASSOCIATION(resp[0]));