Searched refs:AudioCommandType (Results 1 – 4 of 4) sorted by relevance
/device/google/cuttlefish/host/libs/audio_connector/ |
D | server.cpp | 178 switch (static_cast<AudioCommandType>(cmd_hdr->code.as_uint32_t())) { in ReceiveCommands() 179 case AudioCommandType::VIRTIO_SND_R_PCM_INFO: { in ReceiveCommands() 195 case AudioCommandType::VIRTIO_SND_R_PCM_SET_PARAMS: { in ReceiveCommands() 211 case AudioCommandType::VIRTIO_SND_R_PCM_PREPARE: { in ReceiveCommands() 217 StreamControlCommand cmd(AudioCommandType::VIRTIO_SND_R_PCM_PREPARE, in ReceiveCommands() 222 case AudioCommandType::VIRTIO_SND_R_PCM_RELEASE: { in ReceiveCommands() 228 StreamControlCommand cmd(AudioCommandType::VIRTIO_SND_R_PCM_RELEASE, in ReceiveCommands() 233 case AudioCommandType::VIRTIO_SND_R_PCM_START: { in ReceiveCommands() 239 StreamControlCommand cmd(AudioCommandType::VIRTIO_SND_R_PCM_START, in ReceiveCommands() 244 case AudioCommandType::VIRTIO_SND_R_PCM_STOP: { in ReceiveCommands() [all …]
|
D | commands.h | 29 AudioCommandType type() const { return type_; } in type() 33 AudioCommand(AudioCommandType type) : type_(type) {} in AudioCommand() 39 const AudioCommandType type_; 45 InfoCommand(AudioCommandType type, uint32_t start_id, size_t count, R* reply) in InfoCommand() 93 StreamControlCommand(AudioCommandType type, uint32_t stream_id);
|
D | commands.cpp | 36 : InfoCommand(AudioCommandType::VIRTIO_SND_R_CHMAP_INFO, start_id, count, in JackInfoCommand() 55 : InfoCommand(AudioCommandType::VIRTIO_SND_R_CHMAP_INFO, start_id, count, in ChmapInfoCommand() 80 : InfoCommand(AudioCommandType::VIRTIO_SND_R_PCM_INFO, start_id, count, in StreamInfoCommand() 105 StreamControlCommand::StreamControlCommand(AudioCommandType type, in StreamControlCommand() 118 : StreamControlCommand(AudioCommandType::VIRTIO_SND_R_PCM_SET_PARAMS, in StreamSetParamsCommand()
|
D | shm_layout.h | 26 enum class AudioCommandType : uint32_t { enum
|