Lines Matching refs:streamSetKey
46 StreamSetKey streamSetKey = {streamInfo.streamSetId, streamInfo.isMultiRes}; in registerStream() local
49 streamSetKey.id == CAMERA3_STREAM_SET_ID_INVALID) { in registerStream()
51 __FUNCTION__, streamId, streamSetKey.id); in registerStream()
56 __FUNCTION__, streamId, streamSetKey.id, streamInfo.totalBufferCount); in registerStream()
91 ssize_t setIdx = mStreamSetMap.indexOfKey(streamSetKey); in registerStream()
94 __FUNCTION__, streamSetKey.id, streamSetKey.isMultiRes); in registerStream()
97 setIdx = mStreamSetMap.add(streamSetKey, newStreamSet); in registerStream()
104 __FUNCTION__, streamId, streamSetKey.id, streamSetKey.isMultiRes); in registerStream()
128 StreamSetKey streamSetKey = {streamSetId, isMultiRes}; in unregisterStream() local
129 if (!checkIfStreamRegisteredLocked(streamId, streamSetKey)){ in unregisterStream()
136 StreamSet& currentSet = mStreamSetMap.editValueFor(streamSetKey); in unregisterStream()
159 mStreamSetMap.removeItem(streamSetKey); in unregisterStream()
167 StreamSetKey streamSetKey = {streamSetId, isMultiRes}; in notifyBufferRemoved() local
168 StreamSet &streamSet = mStreamSetMap.editValueFor(streamSetKey); in notifyBufferRemoved()
175 int streamId, StreamSetKey streamSetKey) { in checkAndFreeBufferOnOtherStreamsLocked() argument
177 StreamSet &streamSet = mStreamSetMap.editValueFor(streamSetKey); in checkAndFreeBufferOnOtherStreamsLocked()
180 streamSetKey.id, streamSetKey.isMultiRes); in checkAndFreeBufferOnOtherStreamsLocked()
202 streamSetKey.id, streamSetKey.isMultiRes); in checkAndFreeBufferOnOtherStreamsLocked()
256 StreamSetKey streamSetKey = {streamSetId, isMultiRes}; in getBufferForStream() local
257 if (!checkIfStreamRegisteredLocked(streamId, streamSetKey)) { in getBufferForStream()
263 StreamSet &streamSet = mStreamSetMap.editValueFor(streamSetKey); in getBufferForStream()
327 res = checkAndFreeBufferOnOtherStreamsLocked(streamId, streamSetKey); in getBufferForStream()
333 res = checkAndFreeBufferOnOtherStreamsLocked(streamId, streamSetKey); in getBufferForStream()
358 StreamSetKey streamSetKey = {streamSetId, isMultiRes}; in onBufferReleased() local
359 if (!checkIfStreamRegisteredLocked(streamId, streamSetKey)){ in onBufferReleased()
367 StreamSet& streamSet = mStreamSetMap.editValueFor(streamSetKey); in onBufferReleased()
419 StreamSetKey streamSetKey = {streamSetId, isMultiRes}; in onBuffersRemoved() local
420 if (!checkIfStreamRegisteredLocked(streamId, streamSetKey)){ in onBuffersRemoved()
427 StreamSet& streamSet = mStreamSetMap.editValueFor(streamSetKey); in onBuffersRemoved()
493 StreamSetKey streamSetKey) const { in checkIfStreamRegisteredLocked()
494 ssize_t setIdx = mStreamSetMap.indexOfKey(streamSetKey); in checkIfStreamRegisteredLocked()
497 __FUNCTION__, streamSetKey.id, streamSetKey.isMultiRes); in checkIfStreamRegisteredLocked()
511 __FUNCTION__, streamId, streamSetKey.id, streamSetKey.isMultiRes, in checkIfStreamRegisteredLocked()