Home
last modified time | relevance | path

Searched refs:CreateHostStream (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/drivers/peripheral/camera/test/ut/pipeline_core/
H A Dpipeline_core_test.cpp66 re = core->GetHostStreamMgr()->CreateHostStream({
86 re = core->GetHostStreamMgr()->CreateHostStream({
106 re = core->GetHostStreamMgr()->CreateHostStream({
110 re = core->GetHostStreamMgr()->CreateHostStream({
130 re = core->GetHostStreamMgr()->CreateHostStream({
141 re = core->GetHostStreamMgr()->CreateHostStream({
157 re = core->GetHostStreamMgr()->CreateHostStream({
161 re = core->GetHostStreamMgr()->CreateHostStream({
181 re = core->GetHostStreamMgr()->CreateHostStream({
185 re = core->GetHostStreamMgr()->CreateHostStream({
[all …]
H A Dstream_pipeline_dispatcher_test.cpp59 streamMgr->CreateHostStream({
62 streamMgr->CreateHostStream({
83 streamMgrConf->CreateHostStream({
86 streamMgrConf->CreateHostStream({
107 streamMgrAbConf->CreateHostStream({
110 streamMgrAbConf->CreateHostStream({
H A Dstream_pipeline_builder_test.cpp61 streamMgr->CreateHostStream({
64 streamMgr->CreateHostStream({
81 streamMgr->CreateHostStream({
84 streamMgr->CreateHostStream({
H A Dstream_pipeline_strategy_test.cpp56 streamMgr->CreateHostStream({
68 streamMgr->CreateHostStream({
80 streamMgr->CreateHostStream({
83 streamMgr->CreateHostStream({
/ohos5.0/drivers/peripheral/camera/vdi_base/common/pipeline_core/host_stream/src/
H A Dhost_stream_mgr_impl.cpp20 RetCode CreateHostStream(const HostStreamInfo& info, BufferCb c) override;
33 RetCode HostStreamMgrImpl::CreateHostStream(const HostStreamInfo& info, BufferCb c) in CreateHostStream() function in OHOS::Camera::HostStreamMgrImpl
/ohos5.0/drivers/peripheral/camera/vdi_base/common/pipeline_core/host_stream/include/
H A Dhost_stream_mgr.h25 virtual RetCode CreateHostStream(const HostStreamInfo& info, BufferCb c) = 0;
/ohos5.0/drivers/peripheral/camera/vdi_base/v4l2/src/stream_operator/
H A Dstream_base.cpp115 …RetCode rc = hostStreamMgr_->CreateHostStream(info, [this](auto buffer) { HandleResult(buffer); }); in CommitStream()