Lines Matching refs:stream_id

364         uint32_t *stream_id,  in allocateStream()  argument
468 *stream_id = mNextStreamId; in allocateStream()
474 *stream_id, width, height, format, *usage, *max_buffers); in allocateStream()
481 uint32_t stream_id, in registerStreamBuffers() argument
492 stream_id, num_buffers); in registerStreamBuffers()
497 __FUNCTION__, stream_id, num_buffers); in registerStreamBuffers()
501 ssize_t streamIndex = mStreams.indexOfKey(stream_id); in registerStreamBuffers()
503 ALOGE("%s: Unknown stream id %d!", __FUNCTION__, stream_id); in registerStreamBuffers()
516 __FUNCTION__, stream_id, finalFormat, stream.format); in registerStreamBuffers()
523 int EmulatedFakeCamera2::releaseStream(uint32_t stream_id) { in releaseStream() argument
526 ssize_t streamIndex = mStreams.indexOfKey(stream_id); in releaseStream()
528 ALOGE("%s: Unknown stream id %d!", __FUNCTION__, stream_id); in releaseStream()
532 if (isStreamInUse(stream_id)) { in releaseStream()
534 stream_id); in releaseStream()
558 uint32_t *stream_id) { in allocateReprocessStreamFromStream() argument
591 *stream_id = mNextReprocessStreamId; in allocateReprocessStreamFromStream()
595 *stream_id, newStream.width, newStream.height, newStream.format, in allocateReprocessStreamFromStream()
602 int EmulatedFakeCamera2::releaseReprocessStream(uint32_t stream_id) { in releaseReprocessStream() argument
605 ssize_t streamIndex = mReprocessStreams.indexOfKey(stream_id); in releaseReprocessStream()
607 ALOGE("%s: Unknown reprocess stream id %d!", __FUNCTION__, stream_id); in releaseReprocessStream()
611 if (isReprocessStreamInUse(stream_id)) { in releaseReprocessStream()
613 stream_id); in releaseReprocessStream()