Lines Matching refs:memInfo
305 int QCamera3HeapMemory::allocOneBuffer(QCamera3MemInfo &memInfo, in allocOneBuffer() argument
342 memInfo.fd = ion_info_fd.fd; in allocOneBuffer()
343 memInfo.handle = ion_info_fd.handle; in allocOneBuffer()
344 memInfo.size = allocData.len; in allocOneBuffer()
366 void QCamera3HeapMemory::deallocOneBuffer(QCamera3MemInfo &memInfo) in deallocOneBuffer() argument
370 if (memInfo.fd >= 0) { in deallocOneBuffer()
371 close(memInfo.fd); in deallocOneBuffer()
372 memInfo.fd = -1; in deallocOneBuffer()
377 handle_data.handle = memInfo.handle; in deallocOneBuffer()
380 memInfo.handle = 0; in deallocOneBuffer()
381 memInfo.size = 0; in deallocOneBuffer()