/hardware/ti/omap4-aah/ion/ |
ion.h | 33 int ion_share(int fd, struct ion_handle *handle, int *share_fd);
|
ion.c | 130 int ion_share(int fd, struct ion_handle *handle, int *share_fd) function
|
ion_test.c | 158 ret = ion_share(fd, handle, &share_fd);
|
/hardware/ti/omap4xxx/ion/ |
ion.h | 33 int ion_share(int fd, struct ion_handle *handle, int *share_fd);
|
ion.c | 129 int ion_share(int fd, struct ion_handle *handle, int *share_fd) function
|
/system/core/libion/tests/ |
invalid_values_test.cpp | 40 ASSERT_EQ(0, ion_share(m_ionFd, m_validHandle, &m_validShareFd)); 141 TEST_F(InvalidValues, ion_share) 146 int ret = ion_share(0, m_validHandle, &share_fd); 149 EXPECT_EQ(-EBADF, ion_share(-1, m_validHandle, &share_fd)); 151 EXPECT_EQ(-EINVAL, ion_share(m_ionFd, 0, &share_fd)); 153 EXPECT_EQ(-EINVAL, ion_share(m_ionFd, m_badHandle, &share_fd)); 155 EXPECT_EQ(-EINVAL, ion_share(m_ionFd, m_validHandle, NULL));
|
formerly_valid_handle_test.cpp | 62 ASSERT_EQ(-EINVAL, ion_share(m_ionFd, m_handle, &share_fd));
|
/system/core/libion/include/ion/ |
ion.h | 41 int ion_share(int fd, ion_user_handle_t handle, int *share_fd);
|
/hardware/ti/omap4-aah/system-core-headers-ti/ion/ |
ion.h | 39 int ion_share(int fd, struct ion_handle *handle, int *share_fd);
|
/system/core/libion/ |
ion.c | 121 int ion_share(int fd, ion_user_handle_t handle, int *share_fd) function 150 ret = ion_share(fd, handle, handle_fd);
|
ion_test.c | 141 ret = ion_share(fd, handle, &share_fd);
|
/hardware/ti/omap4-aah/domx/omx_proxy_component/omx_camera/src/ |
omx_proxy_camera.c | 431 ret = ion_share(pCompPrv->ion_fd, handle, &fd1); 448 ret = ion_share(pCompPrv->ion_fd, handle, &fd2); 486 ret = ion_share(pCompPrv->ion_fd, handle, &fd);
|
/hardware/ti/omap4-aah/test/CameraHal/ |
surfacetexture_test.cpp | 198 ret = ion_share (fd, handle, &share_fd); 200 printf("ion_share returned error %d, %s\n", ret, strerror(errno)); 203 printf("ion_share returned %d\n", ret);
|
/device/linaro/hikey/gralloc/ |
alloc_device.cpp | 117 ret = ion_share(m->ion_client, ion_hnd, &shared_fd); 121 AERR("ion_share( %d ) failed", m->ion_client);
|
/hardware/ti/omap4-aah/domx/domx/omx_proxy_common/src/ |
omx_proxy_common.c | 749 if (ion_share(pCompPrv->ion_fd, handle, &(pCompPrv->tBufList[currentBuffer].mmap_fd)) < 0) { 750 DOMX_ERROR("ion_share failed !!! \n"); 753 DOMX_DEBUG("ion_share success pMemptr: 0x%x \n", pCompPrv->tBufList[currentBuffer].mmap_fd); [all...] |