Home
last modified time | relevance | path

Searched refs:device (Results 1 – 25 of 4699) sorted by relevance

12345678910>>...188

/third_party/libinput/src/
Devdev.c92 parse_udev_flag(struct evdev_device *device, in parse_udev_flag() argument
104 evdev_log_error(device, in parse_udev_flag()
115 evdev_update_key_down_count(struct evdev_device *device, in evdev_update_key_down_count() argument
123 key_count = ++device->key_count[code]; in evdev_update_key_down_count()
125 assert(device->key_count[code] > 0); in evdev_update_key_down_count()
126 key_count = --device->key_count[code]; in evdev_update_key_down_count()
130 evdev_log_bug_libinput(device, in evdev_update_key_down_count()
139 evdev_device_switch_get_state(struct evdev_device *device, in evdev_device_switch_get_state() argument
142 struct evdev_dispatch *dispatch = device->dispatch; in evdev_device_switch_get_state()
150 evdev_pointer_notify_physical_button(struct evdev_device *device, in evdev_pointer_notify_physical_button() argument
[all …]
Devdev-middle-button.c81 middlebutton_state_error(struct evdev_device *device, in middlebutton_state_error() argument
84 evdev_log_bug_libinput(device, in middlebutton_state_error()
87 middlebutton_state_to_str(device->middlebutton.state)); in middlebutton_state_error()
91 middlebutton_timer_set(struct evdev_device *device, uint64_t now) in middlebutton_timer_set() argument
93 libinput_timer_set(&device->middlebutton.timer, in middlebutton_timer_set()
98 middlebutton_timer_cancel(struct evdev_device *device) in middlebutton_timer_cancel() argument
100 libinput_timer_cancel(&device->middlebutton.timer); in middlebutton_timer_cancel()
104 middlebutton_set_state(struct evdev_device *device, in middlebutton_set_state() argument
111 middlebutton_timer_set(device, now); in middlebutton_set_state()
112 device->middlebutton.first_event_time = now; in middlebutton_set_state()
[all …]
Devdev-fallback.c36 struct evdev_device *device, in fallback_keyboard_notify_key() argument
43 down_count = evdev_update_key_down_count(device, key, state); in fallback_keyboard_notify_key()
47 keyboard_notify_key(&device->base, time, key, state); in fallback_keyboard_notify_key()
52 struct evdev_device *device, in fallback_lid_notify_toggle() argument
56 switch_notify_toggle(&device->base, in fallback_lid_notify_toggle()
66 struct evdev_device *device, in fallback_notify_physical_button() argument
79 if (evdev_device_has_model_quirk(device, in fallback_notify_physical_button()
83 evdev_pointer_notify_physical_button(device, time, button, state); in fallback_notify_physical_button()
106 normalize_delta(struct evdev_device *device, in normalize_delta() argument
110 normalized->x = delta->x * DEFAULT_MOUSE_DPI / (double)device->dpi; in normalize_delta()
[all …]
Devdev.h219 void (*change_scroll_method)(struct evdev_device *device);
260 void (*change_to_enabled)(struct evdev_device *device);
277 evdev_device(struct libinput_device *device) in evdev_device() argument
279 return container_of(device, struct evdev_device, base); in evdev_device()
289 struct evdev_device *device,
295 struct evdev_device *device);
304 void (*device_added)(struct evdev_device *device,
308 void (*device_removed)(struct evdev_device *device,
312 void (*device_suspended)(struct evdev_device *device,
316 void (*device_resumed)(struct evdev_device *device,
[all …]
Dlibinput.c355 return event->device->seat->libinput; in libinput_event_get_context()
361 return event->device; in libinput_event_get_device()
614 struct evdev_device *device = evdev_device(event->base.device); in libinput_event_pointer_get_absolute_x() local
621 return evdev_convert_to_mm(device->abs.absinfo_x, event->absolute.x); in libinput_event_pointer_get_absolute_x()
627 struct evdev_device *device = evdev_device(event->base.device); in libinput_event_pointer_get_absolute_y() local
634 return evdev_convert_to_mm(device->abs.absinfo_y, event->absolute.y); in libinput_event_pointer_get_absolute_y()
642 struct evdev_device *device = evdev_device(event->base.device); in libinput_event_pointer_get_absolute_x_transformed() local
649 return evdev_device_transform_x(device, event->absolute.x, width); in libinput_event_pointer_get_absolute_x_transformed()
657 struct evdev_device *device = evdev_device(event->base.device); in libinput_event_pointer_get_absolute_y_transformed() local
664 return evdev_device_transform_y(device, event->absolute.y, height); in libinput_event_pointer_get_absolute_y_transformed()
[all …]
Dlibinput-private.h124 int (*device_change_seat)(struct libinput_device *device,
192 int (*count)(struct libinput_device *device);
193 enum libinput_config_status (*set_enabled)(struct libinput_device *device,
195 enum libinput_config_tap_state (*get_enabled)(struct libinput_device *device);
196 enum libinput_config_tap_state (*get_default)(struct libinput_device *device);
198 enum libinput_config_status (*set_map)(struct libinput_device *device,
200 enum libinput_config_tap_button_map (*get_map)(struct libinput_device *device);
201 enum libinput_config_tap_button_map (*get_default_map)(struct libinput_device *device);
203 enum libinput_config_status (*set_drag_enabled)(struct libinput_device *device,
205 enum libinput_config_drag_state (*get_drag_enabled)(struct libinput_device *device);
[all …]
Devdev-tablet-pad.c101 struct evdev_device *device, in pad_process_absolute() argument
140 evdev_log_info(device, in pad_process_absolute()
179 struct evdev_device *device, in pad_handle_ring() argument
185 absinfo = libevdev_get_abs_info(device->evdev, code); in pad_handle_ring()
190 if (device->left_handed.enabled) in pad_handle_ring()
198 struct evdev_device *device, in pad_handle_strip() argument
204 absinfo = libevdev_get_abs_info(device->evdev, code); in pad_handle_strip()
212 if (device->left_handed.enabled) in pad_handle_strip()
252 struct evdev_device *device, in pad_check_notify_axes() argument
255 struct libinput_device *base = &device->base; in pad_check_notify_axes()
[all …]
Dlibinput.h441 libinput_device_tablet_pad_get_num_mode_groups(struct libinput_device *device);
466 libinput_device_tablet_pad_get_mode_group(struct libinput_device *device,
3633 libinput_path_remove_device(struct libinput_device *device);
3990 libinput_device_ref(struct libinput_device *device);
4004 libinput_device_unref(struct libinput_device *device);
4018 libinput_device_set_user_data(struct libinput_device *device, void *user_data);
4030 libinput_device_get_user_data(struct libinput_device *device);
4041 libinput_device_get_context(struct libinput_device *device);
4104 libinput_device_get_device_group(struct libinput_device *device);
4118 libinput_device_get_sysname(struct libinput_device *device);
[all …]
/third_party/vulkan-loader/loader/
Ddev_ext_trampoline.c30 VKAPI_ATTR void VKAPI_CALL vkdev_ext0(VkDevice device);
31 VKAPI_ATTR void VKAPI_CALL vkdev_ext1(VkDevice device);
32 VKAPI_ATTR void VKAPI_CALL vkdev_ext2(VkDevice device);
33 VKAPI_ATTR void VKAPI_CALL vkdev_ext3(VkDevice device);
34 VKAPI_ATTR void VKAPI_CALL vkdev_ext4(VkDevice device);
35 VKAPI_ATTR void VKAPI_CALL vkdev_ext5(VkDevice device);
36 VKAPI_ATTR void VKAPI_CALL vkdev_ext6(VkDevice device);
37 VKAPI_ATTR void VKAPI_CALL vkdev_ext7(VkDevice device);
38 VKAPI_ATTR void VKAPI_CALL vkdev_ext8(VkDevice device);
39 VKAPI_ATTR void VKAPI_CALL vkdev_ext9(VkDevice device);
[all …]
/third_party/skia/src/gpu/vk/
DGrVkInterface.cpp13 #define ACQUIRE_PROC(name, instance, device) \ argument
14 fFunctions.f##name = reinterpret_cast<PFN_vk##name>(getProc("vk" #name, instance, device))
16 #define ACQUIRE_PROC_SUFFIX(name, suffix, instance, device) \ argument
18 reinterpret_cast<PFN_vk##name##suffix>(getProc("vk" #name #suffix, instance, device))
22 VkDevice device, in GrVkInterface() argument
50 ACQUIRE_PROC(GetDeviceQueue, VK_NULL_HANDLE, device); in GrVkInterface()
51 ACQUIRE_PROC(QueueSubmit, VK_NULL_HANDLE, device); in GrVkInterface()
52 ACQUIRE_PROC(QueueWaitIdle, VK_NULL_HANDLE, device); in GrVkInterface()
53 ACQUIRE_PROC(DeviceWaitIdle, VK_NULL_HANDLE, device); in GrVkInterface()
54 ACQUIRE_PROC(AllocateMemory, VK_NULL_HANDLE, device); in GrVkInterface()
[all …]
/third_party/mesa3d/src/intel/vulkan/
Danv_device.c99 struct anv_device *device = (struct anv_device *)data; in compiler_debug_log() local
100 UNUSED struct anv_instance *instance = device->physical->instance; in compiler_debug_log()
178 get_device_extensions(const struct anv_physical_device *device, in get_device_extensions() argument
182 (device->sync_syncobj_type.features & VK_SYNC_FEATURE_CPU_WAIT) != 0; in get_device_extensions()
188 .KHR_8bit_storage = device->info.ver >= 8, in get_device_extensions()
189 .KHR_16bit_storage = device->info.ver >= 8, in get_device_extensions()
191 .KHR_buffer_device_address = device->has_a64_buffer_access, in get_device_extensions()
209 .KHR_fragment_shading_rate = device->info.ver >= 11, in get_device_extensions()
222 !anv_use_relocations(device) && device->perf && in get_device_extensions()
223 (device->perf->i915_perf_version >= 3 || in get_device_extensions()
[all …]
Danv_utrace.c29 command_buffers_count_utraces(struct anv_device *device, in command_buffers_count_utraces() argument
34 if (!u_trace_context_actively_tracing(&device->ds.trace_context)) in command_buffers_count_utraces()
53 struct anv_device *device = in anv_utrace_delete_flush_data() local
61 anv_reloc_list_finish(&flush->relocs, &device->vk.alloc); in anv_utrace_delete_flush_data()
62 anv_device_release_bo(device, flush->batch_bo); in anv_utrace_delete_flush_data()
63 anv_device_release_bo(device, flush->trace_bo); in anv_utrace_delete_flush_data()
66 vk_sync_destroy(&device->vk, flush->sync); in anv_utrace_delete_flush_data()
68 vk_free(&device->vk.alloc, flush); in anv_utrace_delete_flush_data()
78 struct anv_device *device = in anv_device_utrace_emit_copy_ts_buffer() local
86 anv_genX(&device->info, emit_so_memcpy)(&flush->memcpy_state, in anv_device_utrace_emit_copy_ts_buffer()
[all …]
/third_party/mesa3d/src/amd/vulkan/
Dradv_sqtt.c39 radv_se_is_disabled(struct radv_device *device, unsigned se) in radv_se_is_disabled() argument
42 return device->physical_device->rad_info.cu_mask[se][0] == 0; in radv_se_is_disabled()
46 gfx10_get_thread_trace_ctrl(struct radv_device *device, bool enable) in gfx10_get_thread_trace_ctrl() argument
54 if (device->physical_device->rad_info.gfx_level == GFX10_3) in gfx10_get_thread_trace_ctrl()
57 if (device->physical_device->rad_info.has_sqtt_auto_flush_mode_bug) in gfx10_get_thread_trace_ctrl()
64 radv_emit_wait_for_idle(struct radv_device *device, struct radeon_cmdbuf *cs, int family) in radv_emit_wait_for_idle() argument
68 cs, device->physical_device->rad_info.gfx_level, NULL, 0, in radv_emit_wait_for_idle()
69 family == AMD_IP_COMPUTE && device->physical_device->rad_info.gfx_level >= GFX7, in radv_emit_wait_for_idle()
79 radv_emit_thread_trace_start(struct radv_device *device, struct radeon_cmdbuf *cs, in radv_emit_thread_trace_start() argument
82 uint32_t shifted_size = device->thread_trace.buffer_size >> SQTT_BUFFER_ALIGN_SHIFT; in radv_emit_thread_trace_start()
[all …]
Dradv_device.c163 radv_get_adjusted_vram_size(struct radv_physical_device *device) in radv_get_adjusted_vram_size() argument
165 int ov = driQueryOptioni(&device->instance->dri_options, "override_vram_size"); in radv_get_adjusted_vram_size()
167 return MIN2((uint64_t)device->rad_info.vram_size_kb * 1024, (uint64_t)ov << 20); in radv_get_adjusted_vram_size()
168 return (uint64_t)device->rad_info.vram_size_kb * 1024; in radv_get_adjusted_vram_size()
172 radv_get_visible_vram_size(struct radv_physical_device *device) in radv_get_visible_vram_size() argument
174 …return MIN2(radv_get_adjusted_vram_size(device), (uint64_t)device->rad_info.vram_vis_size_kb * 102… in radv_get_visible_vram_size()
178 radv_get_vram_size(struct radv_physical_device *device) in radv_get_vram_size() argument
180 uint64_t total_size = radv_get_adjusted_vram_size(device); in radv_get_vram_size()
181 return total_size - MIN2(total_size, (uint64_t)device->rad_info.vram_vis_size_kb * 1024); in radv_get_vram_size()
192 radv_physical_device_init_mem_types(struct radv_physical_device *device) in radv_physical_device_init_mem_types() argument
[all …]
Dradv_debug.c67 radv_init_trace(struct radv_device *device) in radv_init_trace() argument
69 struct radeon_winsys *ws = device->ws; in radv_init_trace()
75 RADEON_FLAG_VA_UNCACHED, RADV_BO_PRIORITY_UPLOAD_BUFFER, 0, &device->trace_bo); in radv_init_trace()
79 result = ws->buffer_make_resident(ws, device->trace_bo, true); in radv_init_trace()
83 device->trace_id_ptr = ws->buffer_map(device->trace_bo); in radv_init_trace()
84 if (!device->trace_id_ptr) in radv_init_trace()
87 ac_vm_fault_occured(device->physical_device->rad_info.gfx_level, &device->dmesg_timestamp, NULL); in radv_init_trace()
93 radv_finish_trace(struct radv_device *device) in radv_finish_trace() argument
95 struct radeon_winsys *ws = device->ws; in radv_finish_trace()
97 if (unlikely(device->trace_bo)) { in radv_finish_trace()
[all …]
/third_party/vulkan-loader/loader/generated/
Dvk_dispatch_table_helper.h32 static VKAPI_ATTR VkResult VKAPI_CALL StubCreateSwapchainKHR(VkDevice device, const VkSwapchainCrea… in StubCreateSwapchainKHR() argument
33 static VKAPI_ATTR void VKAPI_CALL StubDestroySwapchainKHR(VkDevice device, VkSwapchainKHR swapchain… in StubDestroySwapchainKHR() argument
34 static VKAPI_ATTR VkResult VKAPI_CALL StubGetSwapchainImagesKHR(VkDevice device, VkSwapchainKHR swa… in StubGetSwapchainImagesKHR() argument
35 static VKAPI_ATTR VkResult VKAPI_CALL StubAcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapc… in StubAcquireNextImageKHR() argument
37 static VKAPI_ATTR VkResult VKAPI_CALL StubGetDeviceGroupPresentCapabilitiesKHR(VkDevice device, VkD… in StubGetDeviceGroupPresentCapabilitiesKHR() argument
38 static VKAPI_ATTR VkResult VKAPI_CALL StubGetDeviceGroupSurfacePresentModesKHR(VkDevice device, VkS… in StubGetDeviceGroupSurfacePresentModesKHR() argument
39 static VKAPI_ATTR VkResult VKAPI_CALL StubAcquireNextImage2KHR(VkDevice device, const VkAcquireNext… in StubAcquireNextImage2KHR() argument
40 static VKAPI_ATTR VkResult VKAPI_CALL StubCreateSharedSwapchainsKHR(VkDevice device, uint32_t swapc… in StubCreateSharedSwapchainsKHR() argument
42 static VKAPI_ATTR VkResult VKAPI_CALL StubCreateVideoSessionKHR(VkDevice device, const VkVideoSessi… in StubCreateVideoSessionKHR() argument
45 static VKAPI_ATTR void VKAPI_CALL StubDestroyVideoSessionKHR(VkDevice device, VkVideoSessionKHR vid… in StubDestroyVideoSessionKHR() argument
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/comp/
Dbasic.dynamic-buffer.msl2.invalid.comp34 device Baz* baz [[id(0)]][3][3][2];
40 device Baz* baz[3][3][2] =
44 … (device Baz* )((device char* )spvDescriptorSet1.baz[0][0][0] + spvDynamicOffsets[1]),
45 … (device Baz* )((device char* )spvDescriptorSet1.baz[0][0][1] + spvDynamicOffsets[2]),
48 … (device Baz* )((device char* )spvDescriptorSet1.baz[0][1][0] + spvDynamicOffsets[3]),
49 … (device Baz* )((device char* )spvDescriptorSet1.baz[0][1][1] + spvDynamicOffsets[4]),
52 … (device Baz* )((device char* )spvDescriptorSet1.baz[0][2][0] + spvDynamicOffsets[5]),
53 … (device Baz* )((device char* )spvDescriptorSet1.baz[0][2][1] + spvDynamicOffsets[6]),
58 … (device Baz* )((device char* )spvDescriptorSet1.baz[1][0][0] + spvDynamicOffsets[7]),
59 … (device Baz* )((device char* )spvDescriptorSet1.baz[1][0][1] + spvDynamicOffsets[8]),
[all …]
/third_party/mesa3d/src/imagination/vulkan/
Dpvr_job_context.c57 static VkResult pvr_ctx_reset_cmd_init(struct pvr_device *device, in pvr_ctx_reset_cmd_init() argument
60 const struct pvr_device_info *dev_info = &device->pdevice->dev_info; in pvr_ctx_reset_cmd_init()
74 static void pvr_ctx_reset_cmd_fini(struct pvr_device *device, in pvr_ctx_reset_cmd_fini() argument
82 struct pvr_device *device, in pvr_pds_pt_store_program_create_and_upload() argument
88 const struct pvr_device_info *dev_info = &device->pdevice->dev_info; in pvr_pds_pt_store_program_create_and_upload()
111 staging_buffer = vk_zalloc(&device->vk.alloc, in pvr_pds_pt_store_program_create_and_upload()
116 return vk_error(device, VK_ERROR_OUT_OF_HOST_MEMORY); in pvr_pds_pt_store_program_create_and_upload()
135 pvr_gpu_upload_pds(device, in pvr_pds_pt_store_program_create_and_upload()
145 vk_free(&device->vk.alloc, staging_buffer); in pvr_pds_pt_store_program_create_and_upload()
151 struct pvr_device *device, in pvr_pds_pt_resume_program_create_and_upload() argument
[all …]
Dpvr_queue.c57 static VkResult pvr_queue_init(struct pvr_device *device, in pvr_queue_init() argument
68 vk_queue_init(&queue->vk, &device->vk, pCreateInfo, index_in_family); in pvr_queue_init()
72 result = pvr_transfer_ctx_create(device, in pvr_queue_init()
78 result = pvr_compute_ctx_create(device, in pvr_queue_init()
85 pvr_render_ctx_create(device, PVR_WINSYS_CTX_PRIORITY_MEDIUM, &gfx_ctx); in pvr_queue_init()
89 queue->device = device; in pvr_queue_init()
111 VkResult pvr_queues_create(struct pvr_device *device, in pvr_queues_create() argument
124 device->queues = vk_alloc(&device->vk.alloc, in pvr_queues_create()
125 queue_create->queueCount * sizeof(*device->queues), in pvr_queues_create()
128 if (!device->queues) in pvr_queues_create()
[all …]
/third_party/mesa3d/src/vulkan/runtime/
Dvk_drm_syncobj.c45 vk_drm_syncobj_init(struct vk_device *device, in vk_drm_syncobj_init() argument
55 assert(device->drm_fd >= 0); in vk_drm_syncobj_init()
56 int err = drmSyncobjCreate(device->drm_fd, flags, &sobj->syncobj); in vk_drm_syncobj_init()
58 return vk_errorf(device, VK_ERROR_OUT_OF_HOST_MEMORY, in vk_drm_syncobj_init()
63 err = drmSyncobjTimelineSignal(device->drm_fd, &sobj->syncobj, in vk_drm_syncobj_init()
66 vk_drm_syncobj_finish(device, sync); in vk_drm_syncobj_init()
67 return vk_errorf(device, VK_ERROR_OUT_OF_HOST_MEMORY, in vk_drm_syncobj_init()
76 vk_drm_syncobj_finish(struct vk_device *device, in vk_drm_syncobj_finish() argument
81 assert(device->drm_fd >= 0); in vk_drm_syncobj_finish()
82 ASSERTED int err = drmSyncobjDestroy(device->drm_fd, sobj->syncobj); in vk_drm_syncobj_finish()
[all …]
Dvk_object.c34 vk_object_base_init(struct vk_device *device, in vk_object_base_init() argument
40 base->device = device; in vk_object_base_init()
52 vk_free(&base->device->alloc, base->object_name); in vk_object_base_finish()
56 vk_object_alloc(struct vk_device *device, in vk_object_alloc() argument
61 void *ptr = vk_alloc2(&device->alloc, alloc, size, 8, in vk_object_alloc()
66 vk_object_base_init(device, (struct vk_object_base *)ptr, obj_type); in vk_object_alloc()
72 vk_object_zalloc(struct vk_device *device, in vk_object_zalloc() argument
77 void *ptr = vk_zalloc2(&device->alloc, alloc, size, 8, in vk_object_zalloc()
82 vk_object_base_init(device, (struct vk_object_base *)ptr, obj_type); in vk_object_zalloc()
88 vk_object_multialloc(struct vk_device *device, in vk_object_multialloc() argument
[all …]
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkDeviceDriverImpl.inl7 PFN_vkVoidFunction DeviceDriver::getDeviceProcAddr (VkDevice device, const char* pName) const argument
9 return m_vk.getDeviceProcAddr(device, pName);
12 void DeviceDriver::destroyDevice (VkDevice device, const VkAllocationCallbacks* pAllocator) const argument
14 m_vk.destroyDevice(device, pAllocator);
17 void DeviceDriver::getDeviceQueue (VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex,… argument
19 m_vk.getDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue);
32 VkResult DeviceDriver::deviceWaitIdle (VkDevice device) const
34 return m_vk.deviceWaitIdle(device);
37 VkResult DeviceDriver::allocateMemory (VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, … argument
39 return m_vk.allocateMemory(device, pAllocateInfo, pAllocator, pMemory);
[all …]
/third_party/mesa3d/src/broadcom/vulkan/
Dv3dv_bo.c46 bo_dump_stats(struct v3dv_device *device) in bo_dump_stats() argument
48 struct v3dv_bo_cache *cache = &device->bo_cache; in bo_dump_stats()
50 fprintf(stderr, " BOs allocated: %d\n", device->bo_count); in bo_dump_stats()
51 fprintf(stderr, " BOs size: %dkb\n", device->bo_size / 1024); in bo_dump_stats()
95 bo_from_cache(struct v3dv_device *device, uint32_t size, const char *name) in bo_from_cache() argument
97 struct v3dv_bo_cache *cache = &device->bo_cache; in bo_from_cache()
114 if (!v3dv_bo_wait(device, bo, 0)) { in bo_from_cache()
128 bo_free(struct v3dv_device *device, in bo_free() argument
140 int ret = v3dv_ioctl(device->pdevice->render_fd, DRM_IOCTL_GEM_CLOSE, &c); in bo_free()
144 device->bo_count--; in bo_free()
[all …]
Dv3dv_device.c117 get_device_extensions(const struct v3dv_physical_device *device, in get_device_extensions() argument
142 .KHR_performance_query = device->caps.perfmon, in get_device_extensions()
273 v3dv_physical_device_free_disk_cache(struct v3dv_physical_device *device) in v3dv_physical_device_free_disk_cache() argument
276 if (device->disk_cache) in v3dv_physical_device_free_disk_cache()
277 disk_cache_destroy(device->disk_cache); in v3dv_physical_device_free_disk_cache()
279 assert(device->disk_cache == NULL); in v3dv_physical_device_free_disk_cache()
284 physical_device_finish(struct v3dv_physical_device *device) in physical_device_finish() argument
286 v3dv_wsi_finish(device); in physical_device_finish()
287 v3dv_physical_device_free_disk_cache(device); in physical_device_finish()
288 v3d_compiler_free(device->compiler); in physical_device_finish()
[all …]
/third_party/libinput/export_include/
Dlibinput.h441 libinput_device_tablet_pad_get_num_mode_groups(struct libinput_device *device);
466 libinput_device_tablet_pad_get_mode_group(struct libinput_device *device,
3633 libinput_path_remove_device(struct libinput_device *device);
3990 libinput_device_ref(struct libinput_device *device);
4004 libinput_device_unref(struct libinput_device *device);
4018 libinput_device_set_user_data(struct libinput_device *device, void *user_data);
4030 libinput_device_get_user_data(struct libinput_device *device);
4041 libinput_device_get_context(struct libinput_device *device);
4104 libinput_device_get_device_group(struct libinput_device *device);
4118 libinput_device_get_sysname(struct libinput_device *device);
[all …]

12345678910>>...188