Lines Matching refs:handle
58 unsigned int flags, struct ion_handle **handle)
71 *handle = data.handle;
75 int ion_free(int fd, struct ion_handle *handle)
78 .handle = handle,
83 int ion_map(int fd, struct ion_handle *handle, size_t length, int prot,
87 .handle = handle,
106 int ion_share(int fd, struct ion_handle *handle, int *share_fd)
110 .handle = handle,
126 struct ion_handle *handle;
129 ret = ion_alloc(fd, len, align, heap_mask, flags, &handle);
132 ret = ion_share(fd, handle, handle_fd);
133 ion_free(fd, handle);
137 int ion_import(int fd, int share_fd, struct ion_handle **handle)
146 *handle = data.handle;