Lines Matching refs:handle

78 static int gralloc_register_buffer(gralloc_module_t const *module, buffer_handle_t handle)  in gralloc_register_buffer()  argument
82 return mali_gralloc_reference_retain(m, handle); in gralloc_register_buffer()
85 static int gralloc_unregister_buffer(gralloc_module_t const *module, buffer_handle_t handle) in gralloc_unregister_buffer() argument
89 return mali_gralloc_reference_release(m, handle, false); in gralloc_unregister_buffer()
92 static int gralloc_lock(gralloc_module_t const *module, buffer_handle_t handle, int usage, int l, i… in gralloc_lock() argument
97 return mali_gralloc_lock(m, handle, usage, l, t, w, h, vaddr); in gralloc_lock()
100 static int gralloc_lock_ycbcr(gralloc_module_t const *module, buffer_handle_t handle, int usage, in… in gralloc_lock_ycbcr() argument
105 return mali_gralloc_lock_ycbcr(m, handle, usage, l, t, w, h, ycbcr); in gralloc_lock_ycbcr()
108 static int gralloc_unlock(gralloc_module_t const *module, buffer_handle_t handle) in gralloc_unlock() argument
112 return mali_gralloc_unlock(m, handle); in gralloc_unlock()
115 static int gralloc_lock_async(gralloc_module_t const *module, buffer_handle_t handle, int usage, in… in gralloc_lock_async() argument
120 return mali_gralloc_lock_async(m, handle, usage, l, t, w, h, vaddr, fence_fd); in gralloc_lock_async()
123 static int gralloc_lock_ycbcr_async(gralloc_module_t const *module, buffer_handle_t handle, int usa… in gralloc_lock_ycbcr_async() argument
128 return mali_gralloc_lock_ycbcr_async(m, handle, usage, l, t, w, h, ycbcr, fence_fd); in gralloc_lock_ycbcr_async()
131 static int gralloc_unlock_async(gralloc_module_t const *module, buffer_handle_t handle, int32_t *fe… in gralloc_unlock_async() argument
135 return mali_gralloc_unlock_async(m, handle, fence_fd); in gralloc_unlock_async()