Home
last modified time | relevance | path

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

/hardware/google/camera/common/hal/utils/
Dresult_dispatcher.h107 typedef std::pair</*id=*/int32_t, StreamKeyType> StreamKey; typedef
218 inline StreamKey CreateStreamKey(int32_t stream_id) const;
221 inline std::string DumpStreamKey(const StreamKey& stream_key) const;
229 std::map<StreamKey, std::map<uint32_t, PendingBuffer>>
Dresult_dispatcher.cc187 StreamKey stream_key = CreateStreamKey(buffer.stream_id); in AddPendingBufferLocked()
418 StreamKey stream_key = CreateStreamKey(buffer.stream_id); in AddBuffer()
507 ResultDispatcher::StreamKey ResultDispatcher::CreateStreamKey( in CreateStreamKey()
510 return StreamKey(stream_id, StreamKeyType::kSingleStream); in CreateStreamKey()
512 return StreamKey(group_stream_map_.at(stream_id), in CreateStreamKey()
517 std::string ResultDispatcher::DumpStreamKey(const StreamKey& stream_key) const { in DumpStreamKey()