Lines Matching defs:request
64 struct mixart_msg request;
86 request.message_id = MSG_SYSTEM_WAIT_SYNCHRO_CMD;
87 request.uid = (struct mixart_uid){0,0};
88 request.data = &system_msg_uid;
89 request.size = sizeof(system_msg_uid);
91 err = snd_mixart_send_msg_wait_notif(mgr, &request, system_msg_uid);
105 request.message_id = MSG_STREAM_START_STREAM_GRP_PACKET;
107 request.message_id = MSG_STREAM_STOP_STREAM_GRP_PACKET;
109 request.uid = pipe->group_uid; /*(struct mixart_uid){0,0};*/
110 request.data = &group_state;
111 request.size = sizeof(group_state);
113 err = snd_mixart_send_msg(mgr, &request, sizeof(group_state_resp), &group_state_resp);
126 err = snd_mixart_send_msg(mgr, &request, sizeof(group_state_resp), &group_state_resp);
136 request.message_id = MSG_SYSTEM_SEND_SYNCHRO_CMD;
137 request.uid = (struct mixart_uid){0,0};
138 request.data = NULL;
139 request.size = 0;
141 err = snd_mixart_send_msg(mgr, &request, sizeof(stat), &stat);
161 struct mixart_msg request;
193 request.message_id = MSG_CLOCK_SET_PROPERTIES;
194 request.uid = mgr->uid_console_manager;
195 request.data = &clock_properties;
196 request.size = sizeof(clock_properties);
198 err = snd_mixart_send_msg(mgr, &request, sizeof(clock_prop_resp), &clock_prop_resp);
222 struct mixart_msg request;
230 request.message_id = MSG_STREAM_ADD_OUTPUT_GROUP;
238 request.message_id = MSG_STREAM_ADD_INPUT_GROUP;
263 request.uid = (struct mixart_uid){0,0}; /* should be StreamManagerUID, but zero is OK if there is only one ! */
264 request.data = &buf->sgroup_req;
265 request.size = sizeof(buf->sgroup_req);
305 err = snd_mixart_send_msg(chip->mgr, &request, sizeof(buf->sgroup_resp), &buf->sgroup_resp);
344 struct mixart_msg request;
360 request.message_id = MSG_STREAM_DELETE_GROUP;
361 request.uid = (struct mixart_uid){0,0};
362 request.data = &pipe->group_uid; /* the streaming group ! */
363 request.size = sizeof(pipe->group_uid);
366 err = snd_mixart_send_msg(mgr, &request, sizeof(delete_resp), &delete_resp);
385 struct mixart_msg request;
396 request.message_id = start ? MSG_STREAM_START_INPUT_STAGE_PACKET : MSG_STREAM_STOP_INPUT_STAGE_PACKET;
398 request.message_id = start ? MSG_STREAM_START_OUTPUT_STAGE_PACKET : MSG_STREAM_STOP_OUTPUT_STAGE_PACKET;
400 request.uid = (struct mixart_uid){0,0};
401 request.data = &stream_state_req;
402 request.size = sizeof(stream_state_req);
410 return snd_mixart_send_msg_nonblock(chip->mgr, &request);
508 struct mixart_msg request;
572 request.message_id = MSG_STREAM_SET_INPUT_STAGE_PARAM;
573 request.uid = (struct mixart_uid){0,0};
574 request.data = &stream_param;
575 request.size = sizeof(stream_param);
577 err = snd_mixart_send_msg(chip->mgr, &request, sizeof(resp), &resp);