Searched refs:busyList_ (Results 1 – 6 of 6) sorted by relevance
/ohos5.0/drivers/peripheral/camera/vdi_base/common/buffer_manager/src/ |
H A D | buffer_pool.cpp | 111 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 D | dbuffer_manager.cpp | 28 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 D | avsharedmemorypool.cpp | 86 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 D | avsharedmemorypool.h | 99 std::list<AVSharedMemory *> busyList_; variable
|
/ohos5.0/drivers/peripheral/distributed_camera/hdi_service/include/dstream_operator/ |
H A D | dbuffer_manager.h | 59 std::list<std::shared_ptr<DImageBuffer>> busyList_ = {}; variable
|
/ohos5.0/drivers/peripheral/camera/vdi_base/common/buffer_manager/include/ |
H A D | buffer_pool.h | 68 std::list<std::shared_ptr<IBuffer>> busyList_ = {}; variable
|