Lines Matching refs:audio_proto
117 audio_proto::PlugDetectNotify notif; in NotifyPlugDetect()
132 zx_status_t SimpleAudioStream::NotifyPosition(const audio_proto::RingBufPositionNotify& notif) { in NotifyPosition()
229 audio_proto::CmdHdr hdr; in ProcessStreamChannel()
230 audio_proto::StreamGetFmtsReq get_formats; in ProcessStreamChannel()
231 audio_proto::StreamSetFmtReq set_format; in ProcessStreamChannel()
232 audio_proto::GetGainReq get_gain; in ProcessStreamChannel()
233 audio_proto::SetGainReq set_gain; in ProcessStreamChannel()
234 audio_proto::PlugDetectReq plug_detect; in ProcessStreamChannel()
235 audio_proto::GetUniqueIdReq get_unique_id; in ProcessStreamChannel()
236 audio_proto::GetStringReq get_string; in ProcessStreamChannel()
252 auto cmd = static_cast<audio_proto::Cmd>(req.hdr.cmd & ~AUDIO_FLAG_NO_ACK); in ProcessStreamChannel()
271 audio_proto::CmdHdr hdr; in ProcessRingBufferChannel()
272 audio_proto::RingBufGetFifoDepthReq get_fifo_depth; in ProcessRingBufferChannel()
273 audio_proto::RingBufGetBufferReq get_buffer; in ProcessRingBufferChannel()
274 audio_proto::RingBufStartReq rb_start; in ProcessRingBufferChannel()
275 audio_proto::RingBufStopReq rb_stop; in ProcessRingBufferChannel()
291 auto cmd = static_cast<audio_proto::Cmd>(req.hdr.cmd & ~AUDIO_FLAG_NO_ACK); in ProcessRingBufferChannel()
329 const audio_proto::StreamGetFmtsReq& req) const { in OnGetStreamFormats()
332 audio_proto::StreamGetFmtsResp resp = { }; in OnGetStreamFormats()
368 const audio_proto::StreamSetFmtReq& req, in OnSetStreamFormat()
373 audio_proto::StreamSetFmtResp resp = { }; in OnSetStreamFormat()
466 const audio_proto::GetGainReq& req) const { in OnGetGain()
468 audio_proto::GetGainResp resp = cur_gain_state_; in OnGetGain()
474 const audio_proto::SetGainReq& req) { in OnSetGain()
475 audio_proto::SetGainResp resp; in OnSetGain()
508 const audio_proto::PlugDetectReq& req) { in OnPlugDetect()
535 audio_proto::PlugDetectResp resp = { }; in OnPlugDetect()
544 const audio_proto::GetUniqueIdReq& req) const { in OnGetUniqueId()
545 audio_proto::GetUniqueIdResp resp; in OnGetUniqueId()
554 const audio_proto::GetStringReq& req) const { in OnGetString()
555 audio_proto::GetStringResp resp; in OnGetString()
581 const audio_proto::RingBufGetFifoDepthReq& req) { in OnGetFifoDepth()
582 audio_proto::RingBufGetFifoDepthResp resp = {}; in OnGetFifoDepth()
592 const audio_proto::RingBufGetBufferReq& req) { in OnGetBuffer()
593 audio_proto::RingBufGetBufferResp resp = {}; in OnGetBuffer()
618 const audio_proto::RingBufStartReq& req) { in OnStart()
619 audio_proto::RingBufStartResp resp = {}; in OnStart()
635 const audio_proto::RingBufStopReq& req) { in OnStop()
636 audio_proto::RingBufStopResp resp = {}; in OnStop()