Lines Matching refs:request

77 	struct mixart_msg request;  in mixart_set_pipe_state()  local
99 request.message_id = MSG_SYSTEM_WAIT_SYNCHRO_CMD; in mixart_set_pipe_state()
100 request.uid = (struct mixart_uid){0,0}; in mixart_set_pipe_state()
101 request.data = &system_msg_uid; in mixart_set_pipe_state()
102 request.size = sizeof(system_msg_uid); in mixart_set_pipe_state()
104 err = snd_mixart_send_msg_wait_notif(mgr, &request, system_msg_uid); in mixart_set_pipe_state()
118 request.message_id = MSG_STREAM_START_STREAM_GRP_PACKET; in mixart_set_pipe_state()
120 request.message_id = MSG_STREAM_STOP_STREAM_GRP_PACKET; in mixart_set_pipe_state()
122 request.uid = pipe->group_uid; /*(struct mixart_uid){0,0};*/ in mixart_set_pipe_state()
123 request.data = &group_state; in mixart_set_pipe_state()
124 request.size = sizeof(group_state); in mixart_set_pipe_state()
126 err = snd_mixart_send_msg(mgr, &request, sizeof(group_state_resp), &group_state_resp); in mixart_set_pipe_state()
139 err = snd_mixart_send_msg(mgr, &request, sizeof(group_state_resp), &group_state_resp); in mixart_set_pipe_state()
149 request.message_id = MSG_SYSTEM_SEND_SYNCHRO_CMD; in mixart_set_pipe_state()
150 request.uid = (struct mixart_uid){0,0}; in mixart_set_pipe_state()
151 request.data = NULL; in mixart_set_pipe_state()
152 request.size = 0; in mixart_set_pipe_state()
154 err = snd_mixart_send_msg(mgr, &request, sizeof(stat), &stat); in mixart_set_pipe_state()
174 struct mixart_msg request; in mixart_set_clock() local
205 request.message_id = MSG_CLOCK_SET_PROPERTIES; in mixart_set_clock()
206 request.uid = mgr->uid_console_manager; in mixart_set_clock()
207 request.data = &clock_properties; in mixart_set_clock()
208 request.size = sizeof(clock_properties); in mixart_set_clock()
210 err = snd_mixart_send_msg(mgr, &request, sizeof(clock_prop_resp), &clock_prop_resp); in mixart_set_clock()
234 struct mixart_msg request; in snd_mixart_add_ref_pipe() local
242 request.message_id = MSG_STREAM_ADD_OUTPUT_GROUP; in snd_mixart_add_ref_pipe()
250 request.message_id = MSG_STREAM_ADD_INPUT_GROUP; in snd_mixart_add_ref_pipe()
275request.uid = (struct mixart_uid){0,0}; /* should be StreamManagerUID, but zero is OK if ther… in snd_mixart_add_ref_pipe()
276 request.data = &buf->sgroup_req; in snd_mixart_add_ref_pipe()
277 request.size = sizeof(buf->sgroup_req); in snd_mixart_add_ref_pipe()
317 err = snd_mixart_send_msg(chip->mgr, &request, sizeof(buf->sgroup_resp), &buf->sgroup_resp); in snd_mixart_add_ref_pipe()
356 struct mixart_msg request; in snd_mixart_kill_ref_pipe() local
372 request.message_id = MSG_STREAM_DELETE_GROUP; in snd_mixart_kill_ref_pipe()
373 request.uid = (struct mixart_uid){0,0}; in snd_mixart_kill_ref_pipe()
374 request.data = &pipe->group_uid; /* the streaming group ! */ in snd_mixart_kill_ref_pipe()
375 request.size = sizeof(pipe->group_uid); in snd_mixart_kill_ref_pipe()
378 err = snd_mixart_send_msg(mgr, &request, sizeof(delete_resp), &delete_resp); in snd_mixart_kill_ref_pipe()
397 struct mixart_msg request; in mixart_set_stream_state() local
408request.message_id = start ? MSG_STREAM_START_INPUT_STAGE_PACKET : MSG_STREAM_STOP_INPUT_STAGE_PAC… in mixart_set_stream_state()
410request.message_id = start ? MSG_STREAM_START_OUTPUT_STAGE_PACKET : MSG_STREAM_STOP_OUTPUT_STAGE_P… in mixart_set_stream_state()
412 request.uid = (struct mixart_uid){0,0}; in mixart_set_stream_state()
413 request.data = &stream_state_req; in mixart_set_stream_state()
414 request.size = sizeof(stream_state_req); in mixart_set_stream_state()
422 return snd_mixart_send_msg_nonblock(chip->mgr, &request); in mixart_set_stream_state()
520 struct mixart_msg request; in mixart_set_format() local
584 request.message_id = MSG_STREAM_SET_INPUT_STAGE_PARAM; in mixart_set_format()
585 request.uid = (struct mixart_uid){0,0}; in mixart_set_format()
586 request.data = &stream_param; in mixart_set_format()
587 request.size = sizeof(stream_param); in mixart_set_format()
589 err = snd_mixart_send_msg(chip->mgr, &request, sizeof(resp), &resp); in mixart_set_format()