Home
last modified time | relevance | path

Searched refs:mStreamInfoBuf (Results 1 – 6 of 6) sorted by relevance

/hardware/qcom/camera/QCamera2/HAL3/
DQCamera3Stream.cpp233 mStreamInfoBuf(NULL), in QCamera3Stream()
265 if (mStreamInfoBuf != NULL) { in ~QCamera3Stream()
271 mStreamInfoBuf->deallocate(); in ~QCamera3Stream()
272 delete mStreamInfoBuf; in ~QCamera3Stream()
273 mStreamInfoBuf = NULL; in ~QCamera3Stream()
329 mStreamInfoBuf = new QCamera3HeapMemory(1); in init()
330 if (mStreamInfoBuf == NULL) { in init()
335 rc = mStreamInfoBuf->allocate(sizeof(cam_stream_info_t)); in init()
343 reinterpret_cast<cam_stream_info_t *>(mStreamInfoBuf->getPtr(0)); in init()
355 bufSize = mStreamInfoBuf->getSize(0); in init()
[all …]
DQCamera3Stream.h111 QCamera3HeapMemory *mStreamInfoBuf; variable
DQCamera3Channel.h129 QCamera3HeapMemory *mStreamInfoBuf; variable
DQCamera3Channel.cpp89 mStreamInfoBuf = NULL; in QCamera3Channel()
/hardware/qcom/camera/QCamera2/HAL/
DQCameraStream.h87 QCameraHeapMemory *getStreamInfoBuf() {return mStreamInfoBuf;}; in getStreamInfoBuf()
138 QCameraHeapMemory *mStreamInfoBuf; variable
DQCameraStream.cpp289 mStreamInfoBuf(NULL), in QCameraStream()
373 if (mStreamInfoBuf != NULL) { in unmapStreamInfoBuf()
428 if (mStreamInfoBuf != NULL) { in releaseStreamInfoBuf()
429 mStreamInfoBuf->deallocate(); in releaseStreamInfoBuf()
430 delete mStreamInfoBuf; in releaseStreamInfoBuf()
431 mStreamInfoBuf = NULL; in releaseStreamInfoBuf()
608 mStreamInfoBuf = streamInfoBuf; in init()
609 mStreamInfo = reinterpret_cast<cam_stream_info_t *>(mStreamInfoBuf->getPtr(0)); in init()
612 rc = mapBuf(mStreamInfoBuf, CAM_MAPPING_BUF_TYPE_STREAM_INFO, NULL); in init()