Lines Matching refs:stream_id
361 uint32_t *stream_id, in allocateStream() argument
465 *stream_id = mNextStreamId; in allocateStream()
471 *stream_id, width, height, format, *usage, *max_buffers); in allocateStream()
478 uint32_t stream_id, in registerStreamBuffers() argument
489 stream_id, num_buffers); in registerStreamBuffers()
494 __FUNCTION__, stream_id, num_buffers); in registerStreamBuffers()
498 ssize_t streamIndex = mStreams.indexOfKey(stream_id); in registerStreamBuffers()
500 ALOGE("%s: Unknown stream id %d!", __FUNCTION__, stream_id); in registerStreamBuffers()
513 __FUNCTION__, stream_id, finalFormat, stream.format); in registerStreamBuffers()
520 int EmulatedFakeCamera2::releaseStream(uint32_t stream_id) { in releaseStream() argument
523 ssize_t streamIndex = mStreams.indexOfKey(stream_id); in releaseStream()
525 ALOGE("%s: Unknown stream id %d!", __FUNCTION__, stream_id); in releaseStream()
529 if (isStreamInUse(stream_id)) { in releaseStream()
531 stream_id); in releaseStream()
555 uint32_t *stream_id) { in allocateReprocessStreamFromStream() argument
588 *stream_id = mNextReprocessStreamId; in allocateReprocessStreamFromStream()
592 *stream_id, newStream.width, newStream.height, newStream.format, in allocateReprocessStreamFromStream()
599 int EmulatedFakeCamera2::releaseReprocessStream(uint32_t stream_id) { in releaseReprocessStream() argument
602 ssize_t streamIndex = mReprocessStreams.indexOfKey(stream_id); in releaseReprocessStream()
604 ALOGE("%s: Unknown reprocess stream id %d!", __FUNCTION__, stream_id); in releaseReprocessStream()
608 if (isReprocessStreamInUse(stream_id)) { in releaseReprocessStream()
610 stream_id); in releaseReprocessStream()