Home
last modified time | relevance | path

Searched refs:is_event_supported (Results 1 – 5 of 5) sorted by relevance

/linux-6.1.9/drivers/input/
Dinput.c62 static inline int is_event_supported(unsigned int code, in is_event_supported() function
265 if (is_event_supported(code, dev->keybit, KEY_MAX)) { in input_get_disposition()
282 if (is_event_supported(code, dev->swbit, SW_MAX) && in input_get_disposition()
291 if (is_event_supported(code, dev->absbit, ABS_MAX)) in input_get_disposition()
297 if (is_event_supported(code, dev->relbit, REL_MAX) && value) in input_get_disposition()
303 if (is_event_supported(code, dev->mscbit, MSC_MAX)) in input_get_disposition()
309 if (is_event_supported(code, dev->ledbit, LED_MAX) && in input_get_disposition()
318 if (is_event_supported(code, dev->sndbit, SND_MAX)) { in input_get_disposition()
428 if (is_event_supported(type, dev->evbit, EV_MAX)) { in input_event()
455 if (is_event_supported(type, dev->evbit, EV_MAX)) { in input_inject_event()
[all …]
/linux-6.1.9/tools/perf/util/
Dprint-events.c278 if (!is_event_supported(PERF_TYPE_HW_CACHE, in print_hwcache_events()
289 supported = is_event_supported( in print_hwcache_events()
438 if (!is_event_supported(type, i)) in print_symbol_events()
Dparse-events-hybrid.c60 && !is_event_supported(attr->type, attr->config)) in create_event_hybrid()
Dparse-events.h22 bool is_event_supported(u8 type, u64 config);
Dparse-events.c153 bool is_event_supported(u8 type, u64 config) in is_event_supported() function