Home
last modified time | relevance | path

Searched refs:channelId (Results 1 - 25 of 53) sorted by relevance

123

/drivers/peripheral/distributed_audio/interface/audio/v1_0/
H A Di_audio_attribute.h30 virtual int32_t GetCurrentChannelId(uint32_t &channelId) = 0;
/drivers/peripheral/audio/test/systemtest/hdi_service/common/capture/src/
H A Daudio_idl_hdicapture_attr_test.cpp173 uint32_t channelId = 0; in HWTEST_F() local
176 ret = capture->GetCurrentChannelId(capture, &channelId); in HWTEST_F()
178 EXPECT_EQ(channelIdValue, channelId); in HWTEST_F()
188 uint32_t channelId = 0; in HWTEST_F() local
194 ret = capture->GetCurrentChannelId(capture, &channelId); in HWTEST_F()
196 EXPECT_EQ(channelIdExp, channelId); in HWTEST_F()
207 uint32_t channelId = 0; in HWTEST_F() local
210 ret = capture->GetCurrentChannelId(captureNull, &channelId); in HWTEST_F()
215 * @tc.desc Test CaptureGetCurrentChannelId interface, return -3 if setting the parameter channelId is nullptr
/drivers/peripheral/bluetooth/audio/interfaces/include/
H A Daudio_attribute.h93 * @param channelId Indicates the pointer to the data channel ID.
96 int32_t (*GetCurrentChannelId)(AudioHandle handle, uint32_t *channelId);
/drivers/peripheral/audio/interfaces/2.0/include/
H A Daudio_attribute.h94 * @param channelId Indicates the pointer to the data channel ID.
97 int32_t (*GetCurrentChannelId)(AudioHandle handle, uint32_t *channelId);
/drivers/peripheral/audio/interfaces/include/
H A Daudio_attribute.h93 * @param channelId Indicates the pointer to the data channel ID.
96 int32_t (*GetCurrentChannelId)(AudioHandle handle, uint32_t *channelId);
/drivers/peripheral/audio/test/hal_mock/
H A Daudio_render_mock.c282 static int32_t GetCurrentChannelId(struct IAudioRenderVdi* render, uint32_t *channelId) in GetCurrentChannelId() argument
284 if (render == NULL || channelId == NULL) { in GetCurrentChannelId()
288 (void *)channelId; in GetCurrentChannelId()
/drivers/peripheral/audio/test/systemtest/hdi_service/common/render/src/
H A Daudio_idl_hdirender_attr_test.cpp160 uint32_t channelId = 0; in HWTEST_F() local
164 ret = render->GetCurrentChannelId(render, &channelId); in HWTEST_F()
166 EXPECT_EQ(channelIdValue, channelId); in HWTEST_F()
176 uint32_t channelId = 0; in HWTEST_F() local
180 ret = render->GetCurrentChannelId(renderNull, &channelId); in HWTEST_F()
185 * @tc.desc Test RenderGetCurrentChannelId interface, return -3 if setting the parameter channelId is nullptr
/drivers/peripheral/audio/interfaces/sound/v1_0/
H A Diaudio_render_vdi.h56 int32_t (*GetCurrentChannelId)(struct IAudioRenderVdi *self, uint32_t *channelId);
H A Diaudio_capture_vdi.h48 int32_t (*GetCurrentChannelId)(struct IAudioCaptureVdi *self, uint32_t *channelId);
/drivers/peripheral/bluetooth/audio/hal/hdi_binder/proxy/include/
H A Daudio_proxy_internal.h45 int32_t AudioProxyRenderGetCurrentChannelId(const AudioHandle handle, uint32_t *channelId);
/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/include/
H A Dfast_audio_render.h33 int32_t FastRenderGetCurrentChannelId(AudioHandle handle, uint32_t *channelId);
/drivers/hdf_core/framework/model/network/wifi/include/
H A Dhdf_wifi_cmd.h438 int32_t channelId; member
443 int32_t channelId; member
/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/src/
H A Dfast_audio_render.cpp127 int32_t FastRenderGetCurrentChannelId(AudioHandle handle, uint32_t *channelId) in FastRenderGetCurrentChannelId() argument
131 (void)channelId; in FastRenderGetCurrentChannelId()
H A Daudio_render.cpp214 int32_t AudioRenderGetCurrentChannelId(AudioHandle handle, uint32_t *channelId) in AudioRenderGetCurrentChannelId() argument
218 if (hwRender == NULL || channelId == NULL) { in AudioRenderGetCurrentChannelId()
221 *channelId = hwRender->renderParam.frameRenderMode.attrs.channelCount; in AudioRenderGetCurrentChannelId()
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/src/
H A Daudio_capture_ext_impl.cpp273 int32_t AudioCaptureExtImpl::GetCurrentChannelId(uint32_t &channelId) in GetCurrentChannelId() argument
276 (void)channelId; in GetCurrentChannelId()
H A Daudio_capture_interface_impl.cpp311 int32_t AudioCaptureInterfaceImpl::GetCurrentChannelId(uint32_t &channelId) in GetCurrentChannelId() argument
314 (void)channelId; in GetCurrentChannelId()
H A Daudio_render_ext_impl.cpp391 int32_t AudioRenderExtImpl::GetCurrentChannelId(uint32_t &channelId) in GetCurrentChannelId() argument
394 (void)channelId; in GetCurrentChannelId()
H A Daudio_render_interface_impl.cpp400 int32_t AudioRenderInterfaceImpl::GetCurrentChannelId(uint32_t &channelId) in GetCurrentChannelId() argument
403 (void)channelId; in GetCurrentChannelId()
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/test/unittest/audio_capture_extension/src/
H A Daudio_capture_ext_impl_test.cpp230 uint32_t channelId = 0; in HWTEST_F() local
243 EXPECT_EQ(HDF_SUCCESS, audioCapturelatencyImpl_->GetCurrentChannelId(channelId)); in HWTEST_F()
/drivers/peripheral/distributed_audio/hdi_service/audio/v1_0/include/
H A Daudio_capture_ext_impl.h61 int32_t GetCurrentChannelId(uint32_t &channelId) override;
H A Daudio_capture_interface_impl.h59 int32_t GetCurrentChannelId(uint32_t &channelId) override;
H A Daudio_render_interface_impl.h72 int32_t GetCurrentChannelId(uint32_t &channelId) override;
H A Daudio_render_ext_impl.h69 int32_t GetCurrentChannelId(uint32_t &channelId) override;
/drivers/peripheral/audio/test/unittest/common/capture/
H A Daudio_capture_common_test.cpp750 uint32_t channelId = 0; in HWTEST_F() local
753 ret = capture_->GetCurrentChannelId(capture_, &channelId); in HWTEST_F()
755 EXPECT_EQ(TEST_CHANNEL_COUNT, channelId); in HWTEST_F()
761 uint32_t channelId = 0; in HWTEST_F() local
767 ret = capture_->GetCurrentChannelId(nullptr, &channelId); in HWTEST_F()
/drivers/peripheral/audio/hdi_service/primary_impl/include/
H A Daudio_internal.h480 int32_t AudioRenderGetCurrentChannelId(struct IAudioRender *handle, uint32_t *channelId);
517 int32_t AudioCaptureGetCurrentChannelId(struct IAudioCapture *handle, uint32_t *channelId);

Completed in 16 milliseconds

123