Home
last modified time | relevance | path

Searched refs:destroy_arg (Results 1 – 6 of 6) sorted by relevance

/third_party/weston/libweston/backend-drm/
Dfb.c59 struct drm_mode_destroy_dumb destroy_arg; in drm_fb_destroy_dumb() local
66 memset(&destroy_arg, 0, sizeof(destroy_arg)); in drm_fb_destroy_dumb()
67 destroy_arg.handle = fb->handles[0]; in drm_fb_destroy_dumb()
68 drmIoctl(fb->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_arg); in drm_fb_destroy_dumb()
124 struct drm_mode_destroy_dumb destroy_arg; in drm_fb_create_dumb() local
193 memset(&destroy_arg, 0, sizeof(destroy_arg)); in drm_fb_create_dumb()
194 destroy_arg.handle = create_arg.handle; in drm_fb_create_dumb()
195 drmIoctl(b->drm.fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_arg); in drm_fb_create_dumb()
/third_party/grpc/src/core/lib/channel/
Dchannel_stack.cc90 int initial_refs, grpc_iomgr_cb_func destroy, void* destroy_arg, in grpc_channel_stack_init() argument
103 GRPC_STREAM_REF_INIT(&stack->refcount, initial_refs, destroy, destroy_arg, in grpc_channel_stack_init()
154 void* destroy_arg, in grpc_call_stack_init() argument
163 destroy_arg, "CALL_STACK"); in grpc_call_stack_init()
Dchannel_stack_builder.cc272 grpc_iomgr_cb_func destroy, void* destroy_arg, void** result) { in grpc_channel_stack_builder_finish() argument
298 initial_refs, destroy, destroy_arg == nullptr ? *result : destroy_arg, in grpc_channel_stack_builder_finish()
Dchannel_stack.h215 int initial_refs, grpc_iomgr_cb_func destroy, void* destroy_arg,
227 void* destroy_arg,
Dchannel_stack_builder.h161 grpc_iomgr_cb_func destroy, void* destroy_arg, void** result);
/third_party/mesa3d/src/gbm/backends/dri/
Dgbm_dri.c1126 struct drm_mode_destroy_dumb destroy_arg; in create_dumb() local
1167 memset(&destroy_arg, 0, sizeof destroy_arg); in create_dumb()
1168 destroy_arg.handle = create_arg.handle; in create_dumb()
1169 drmIoctl(dri->base.v0.fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_arg); in create_dumb()