• Home
  • Raw
  • Download

Lines Matching refs:request

63 	struct mixart_msg request;  in mixart_set_pipe_state()  local
85 request.message_id = MSG_SYSTEM_WAIT_SYNCHRO_CMD; in mixart_set_pipe_state()
86 request.uid = (struct mixart_uid){0,0}; in mixart_set_pipe_state()
87 request.data = &system_msg_uid; in mixart_set_pipe_state()
88 request.size = sizeof(system_msg_uid); in mixart_set_pipe_state()
90 err = snd_mixart_send_msg_wait_notif(mgr, &request, system_msg_uid); in mixart_set_pipe_state()
104 request.message_id = MSG_STREAM_START_STREAM_GRP_PACKET; in mixart_set_pipe_state()
106 request.message_id = MSG_STREAM_STOP_STREAM_GRP_PACKET; in mixart_set_pipe_state()
108 request.uid = pipe->group_uid; /*(struct mixart_uid){0,0};*/ in mixart_set_pipe_state()
109 request.data = &group_state; in mixart_set_pipe_state()
110 request.size = sizeof(group_state); in mixart_set_pipe_state()
112 err = snd_mixart_send_msg(mgr, &request, sizeof(group_state_resp), &group_state_resp); in mixart_set_pipe_state()
125 err = snd_mixart_send_msg(mgr, &request, sizeof(group_state_resp), &group_state_resp); in mixart_set_pipe_state()
135 request.message_id = MSG_SYSTEM_SEND_SYNCHRO_CMD; in mixart_set_pipe_state()
136 request.uid = (struct mixart_uid){0,0}; in mixart_set_pipe_state()
137 request.data = NULL; in mixart_set_pipe_state()
138 request.size = 0; in mixart_set_pipe_state()
140 err = snd_mixart_send_msg(mgr, &request, sizeof(stat), &stat); in mixart_set_pipe_state()
160 struct mixart_msg request; in mixart_set_clock() local
192 request.message_id = MSG_CLOCK_SET_PROPERTIES; in mixart_set_clock()
193 request.uid = mgr->uid_console_manager; in mixart_set_clock()
194 request.data = &clock_properties; in mixart_set_clock()
195 request.size = sizeof(clock_properties); in mixart_set_clock()
197 err = snd_mixart_send_msg(mgr, &request, sizeof(clock_prop_resp), &clock_prop_resp); in mixart_set_clock()
221 struct mixart_msg request; in snd_mixart_add_ref_pipe() local
229 request.message_id = MSG_STREAM_ADD_OUTPUT_GROUP; in snd_mixart_add_ref_pipe()
237 request.message_id = MSG_STREAM_ADD_INPUT_GROUP; in snd_mixart_add_ref_pipe()
262request.uid = (struct mixart_uid){0,0}; /* should be StreamManagerUID, but zero is OK if ther… in snd_mixart_add_ref_pipe()
263 request.data = &buf->sgroup_req; in snd_mixart_add_ref_pipe()
264 request.size = sizeof(buf->sgroup_req); in snd_mixart_add_ref_pipe()
304 err = snd_mixart_send_msg(chip->mgr, &request, sizeof(buf->sgroup_resp), &buf->sgroup_resp); in snd_mixart_add_ref_pipe()
343 struct mixart_msg request; in snd_mixart_kill_ref_pipe() local
359 request.message_id = MSG_STREAM_DELETE_GROUP; in snd_mixart_kill_ref_pipe()
360 request.uid = (struct mixart_uid){0,0}; in snd_mixart_kill_ref_pipe()
361 request.data = &pipe->group_uid; /* the streaming group ! */ in snd_mixart_kill_ref_pipe()
362 request.size = sizeof(pipe->group_uid); in snd_mixart_kill_ref_pipe()
365 err = snd_mixart_send_msg(mgr, &request, sizeof(delete_resp), &delete_resp); in snd_mixart_kill_ref_pipe()
384 struct mixart_msg request; in mixart_set_stream_state() local
395request.message_id = start ? MSG_STREAM_START_INPUT_STAGE_PACKET : MSG_STREAM_STOP_INPUT_STAGE_PAC… in mixart_set_stream_state()
397request.message_id = start ? MSG_STREAM_START_OUTPUT_STAGE_PACKET : MSG_STREAM_STOP_OUTPUT_STAGE_P… in mixart_set_stream_state()
399 request.uid = (struct mixart_uid){0,0}; in mixart_set_stream_state()
400 request.data = &stream_state_req; in mixart_set_stream_state()
401 request.size = sizeof(stream_state_req); in mixart_set_stream_state()
409 return snd_mixart_send_msg_nonblock(chip->mgr, &request); in mixart_set_stream_state()
507 struct mixart_msg request; in mixart_set_format() local
571 request.message_id = MSG_STREAM_SET_INPUT_STAGE_PARAM; in mixart_set_format()
572 request.uid = (struct mixart_uid){0,0}; in mixart_set_format()
573 request.data = &stream_param; in mixart_set_format()
574 request.size = sizeof(stream_param); in mixart_set_format()
576 err = snd_mixart_send_msg(chip->mgr, &request, sizeof(resp), &resp); in mixart_set_format()