Home
last modified time | relevance | path

Searched refs:busyList_ (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/drivers/peripheral/camera/vdi_base/common/buffer_manager/src/
H A Dbuffer_pool.cpp111 busyList_.clear(); in DestroyBuffer()
135 if (busyList_.size() > 0) { in DestroyBuffer()
138 for (auto it : busyList_) { in DestroyBuffer()
148 busyList_.clear(); in DestroyBuffer()
171 busyList_.splice(busyList_.begin(), idleList_, it); in AcquireBuffer()
184 busyList_.splice(busyList_.begin(), idleList_, it); in AcquireBuffer()
201 busyList_.splice(busyList_.begin(), idleList_, it); in AcquireBuffer()
215 auto it = std::find(busyList_.begin(), busyList_.end(), buffer); in ReturnBuffer()
216 if (it == busyList_.end()) { in ReturnBuffer()
222 busyList_.erase(it); in ReturnBuffer()
[all …]
/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/src/dstream_operator/
H A Ddbuffer_manager.cpp28 busyList_.splice(busyList_.begin(), idleList_, it); in AcquireBuffer()
38 if (idleList_.size() + busyList_.size() >= BUFFER_QUEUE_SIZE) { in AddBuffer()
51 auto it = std::find(busyList_.begin(), busyList_.end(), buffer); in RemoveBuffer()
52 if (it == busyList_.end()) { in RemoveBuffer()
56 busyList_.erase(it); in RemoveBuffer()
/ohos5.0/foundation/multimedia/media_foundation/src/common/
H A Davsharedmemorypool.cpp86 for (auto iter = busyList_.begin(); iter != busyList_.end(); ++iter) { in ReleaseMemory()
91 busyList_.erase(iter); in ReleaseMemory()
110 …MEDIA_LOG_D("busylist size " PUBLIC_LOG_ZU ", idlelist size " PUBLIC_LOG_ZU, busyList_.size(), idl… in DoAcquireMemory()
130 auto totalCnt = busyList_.size() + idleList_.size(); in DoAcquireMemory()
200 busyList_.push_back(memory); in AcquireMemory()
/ohos5.0/foundation/multimedia/media_foundation/interface/inner_api/common/
H A Davsharedmemorypool.h99 std::list<AVSharedMemory *> busyList_; variable
/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/include/dstream_operator/
H A Ddbuffer_manager.h59 std::list<std::shared_ptr<DImageBuffer>> busyList_ = {}; variable
/ohos5.0/drivers/peripheral/camera/vdi_base/common/buffer_manager/include/
H A Dbuffer_pool.h68 std::list<std::shared_ptr<IBuffer>> busyList_ = {}; variable