HomeSort by relevance Sort by last modified time
    Searched defs:alloc_data (Results 1 - 18 of 18) sorted by null

  /hardware/qcom/display/msm8084/libgralloc/
memalloc.h 43 struct alloc_data { struct in namespace:gralloc
58 // Allocate buffer - fill in the alloc_data
60 // and fd are returned in the alloc_data struct
61 virtual int alloc_buffer(alloc_data& data) = 0;
  /hardware/qcom/display/msm8226/libgralloc/
memalloc.h 43 struct alloc_data { struct in namespace:gralloc
58 // Allocate buffer - fill in the alloc_data
60 // and fd are returned in the alloc_data struct
61 virtual int alloc_buffer(alloc_data& data) = 0;
  /hardware/qcom/display/msm8909/libgralloc/
memalloc.h 43 struct alloc_data { struct in namespace:gralloc
59 // Allocate buffer - fill in the alloc_data
61 // and fd are returned in the alloc_data struct
62 virtual int alloc_buffer(alloc_data& data) = 0;
  /hardware/qcom/display/msm8909w_3100/libgralloc/
memalloc.h 43 struct alloc_data { struct in namespace:gralloc
59 // Allocate buffer - fill in the alloc_data
61 // and fd are returned in the alloc_data struct
62 virtual int alloc_buffer(alloc_data& data) = 0;
  /hardware/qcom/display/msm8960/libgralloc/
memalloc.h 43 struct alloc_data { struct in namespace:gralloc
58 // Allocate buffer - fill in the alloc_data
60 // and fd are returned in the alloc_data struct
61 virtual int alloc_buffer(alloc_data& data) = 0;
  /hardware/qcom/display/msm8994/libgralloc/
memalloc.h 43 struct alloc_data { struct in namespace:gralloc
58 // Allocate buffer - fill in the alloc_data
60 // and fd are returned in the alloc_data struct
61 virtual int alloc_buffer(alloc_data& data) = 0;
  /hardware/qcom/display/msm8996/libgralloc/
memalloc.h 43 struct alloc_data { struct in namespace:gralloc
59 // Allocate buffer - fill in the alloc_data
61 // and fd are returned in the alloc_data struct
62 virtual int alloc_buffer(alloc_data& data) = 0;
  /external/linux-kselftest/tools/testing/selftests/android/ion/
ionutils.c 52 struct ion_allocation_data alloc_data; local
99 alloc_data.len = ion_info->heap_size;
100 alloc_data.heap_id_mask = 1 << heap_id;
101 alloc_data.flags = ion_info->flag_type;
104 ret = ioctl(ionfd, ION_IOC_ALLOC, &alloc_data);
112 buffer_fd = alloc_data.fd;
113 maplen = alloc_data.len;
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/inc/
video_encoder_device.h 95 struct ion_allocation_data alloc_data; member in struct:venc_dev::recon_buffer
video_encoder_device_copper.h 208 struct ion_allocation_data alloc_data; member in struct:venc_dev::recon_buffer
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/inc/
video_encoder_device.h 101 struct ion_allocation_data alloc_data; member in struct:venc_dev::recon_buffer
video_encoder_device_v4l2.h 322 struct ion_allocation_data alloc_data; member in struct:venc_dev::recon_buffer
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/inc/
video_encoder_device.h 101 struct ion_allocation_data alloc_data; member in struct:venc_dev::recon_buffer
video_encoder_device_v4l2.h 422 struct ion_allocation_data alloc_data; member in struct:venc_dev::recon_buffer
  /external/libcups/cups/
tls-gnutls.c 692 size_t alloc_data = 0, /* Bytes allocated */ local
757 if (alloc_data == 0)
760 alloc_data = 2048;
765 else if ((num_data + strlen(line)) >= alloc_data)
767 unsigned char *tdata = realloc(data, alloc_data + 1024);
778 alloc_data += 1024;
781 decoded = alloc_data - num_data;
961 size_t alloc_data = 0, /* Bytes allocated */ local
1004 if (alloc_data == 0)
1007 alloc_data = 2048
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/venc/test/
venc_test.cpp 300 struct ion_allocation_data alloc_data; member in struct:enc_ion
373 ion_data.alloc_data.len = nSize;
374 ion_data.alloc_data.heap_id_mask = 0x1 << ION_CP_MM_HEAP_ID;
375 ion_data.alloc_data.align = 4096;
376 ion_data.alloc_data.flags = 0;
378 rc = ioctl(ion_data.ion_device_fd,ION_IOC_ALLOC,&ion_data.alloc_data);
379 if(rc || !ion_data.alloc_data.handle) {
381 ion_data.alloc_data.handle=NULL;
385 ion_data.ion_alloc_fd.handle = ion_data.alloc_data.handle;
410 &ion_data.alloc_data.handle))
    [all...]
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/test/
venc_test.cpp 329 struct ion_allocation_data alloc_data; member in struct:enc_ion
403 ion_data.alloc_data.len = nSize;
404 ion_data.alloc_data.heap_id_mask = 0x1 << ION_CP_MM_HEAP_ID;
405 ion_data.alloc_data.align = 4096;
406 ion_data.alloc_data.flags = ION_SECURE;
408 rc = ioctl(ion_data.ion_device_fd,ION_IOC_ALLOC,&ion_data.alloc_data);
410 if (rc || !ion_data.alloc_data.handle) {
411 E("\n ION ALLOC memory failed rc: %d, handle: %p", rc, ion_data.alloc_data.handle);
412 ion_data.alloc_data.handle=NULL;
416 ion_data.ion_alloc_fd.handle = ion_data.alloc_data.handle
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/inc/
video_encoder_device_v4l2.h 455 struct ion_allocation_data alloc_data; member in struct:venc_dev::recon_buffer

Completed in 427 milliseconds