Lines Matching refs:alloc
242 int QCameraMemory::alloc(int count, int size, int heap_id) in alloc() function in qcamera::QCameraMemory
299 struct ion_allocation_data alloc; in allocOneBuffer() local
309 memset(&alloc, 0, sizeof(alloc)); in allocOneBuffer()
310 alloc.len = size; in allocOneBuffer()
312 alloc.len = (alloc.len + 4095) & (~4095); in allocOneBuffer()
313 alloc.align = 4096; in allocOneBuffer()
315 alloc.flags = ION_FLAG_CACHED; in allocOneBuffer()
317 alloc.heap_id_mask = heap_id; in allocOneBuffer()
318 rc = ioctl(main_ion_fd, ION_IOC_ALLOC, &alloc); in allocOneBuffer()
325 ion_info_fd.handle = alloc.handle; in allocOneBuffer()
335 memInfo.size = alloc.len; in allocOneBuffer()
443 int rc = alloc(count, size, heap_id_mask); in allocate()
619 int rc = alloc(count, size, heap_id_mask); in allocate()