Home
last modified time | relevance | path

Searched refs:pending_depth_requests_ (Results 1 – 2 of 2) sorted by relevance

/hardware/google/camera/common/hal/google_camera_hal/
Ddepth_process_block.cc331 if (pending_depth_requests_.find(frame_number) == in ProcessDepthResult()
332 pending_depth_requests_.end()) { in ProcessDepthResult()
336 auto& request = pending_depth_requests_[frame_number].request; in ProcessDepthResult()
351 pending_depth_requests_.erase(frame_number); in ProcessDepthResult()
706 if (pending_depth_requests_.find(frame_number) != in PrepareDepthRequestInfo()
707 pending_depth_requests_.end()) { in PrepareDepthRequestInfo()
712 pending_depth_requests_[frame_number] = {}; in PrepareDepthRequestInfo()
713 auto& pending_request = pending_depth_requests_[frame_number].request; in PrepareDepthRequestInfo()
718 pending_depth_requests_[frame_number].depth_request; in PrepareDepthRequestInfo()
728 if (pending_depth_requests_.find(frame_number) == in UnmapDepthRequestBuffers()
[all …]
Ddepth_process_block.h189 std::unordered_map<uint32_t, PendingDepthRequestInfo> pending_depth_requests_; variable