Home
last modified time | relevance | path

Searched refs:device_get_method (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/stand/kshim/
H A Dbsd_kernel.h152 (((device_attach_t *)(device_get_method(dev, "device_attach")))(dev,## __VA_ARGS__))
154 (((device_detach_t *)(device_get_method(dev, "device_detach")))(dev,## __VA_ARGS__))
156 (((device_probe_t *)(device_get_method(dev, "device_probe")))(dev,## __VA_ARGS__))
158 (((device_resume_t *)(device_get_method(dev, "device_resume")))(dev,## __VA_ARGS__))
160 (((device_shutdown_t *)(device_get_method(dev, "device_shutdown")))(dev,## __VA_ARGS__))
162 (((device_suspend_t *)(device_get_method(dev, "device_suspend")))(dev,## __VA_ARGS__))
164 (((usb_handle_request_t *)(device_get_method(dev, "usb_handle_request")))(dev,## __VA_ARGS__))
166 (((usb_take_controller_t *)(device_get_method(dev, "usb_take_controller")))(dev,## __VA_ARGS__))
168 (((gpio_pin_set_t *)(device_get_method(dev, "gpio_pin_set")))(dev,## __VA_ARGS__))
170 (((gpio_pin_setflags_t *)(device_get_method(dev, "gpio_pin_setflags")))(dev,## __VA_ARGS__))
[all …]
H A Dbsd_kernel.c899 device_get_method(device_t dev, const char *what) in device_get_method() function