These are functions which interact with the syspath (/sys/$PATH) of a device. More...
Functions | |
| EAPI const char * | eeze_udev_devpath_get_syspath (const char *devpath) |
| Get the syspath of a device from the /dev/ path. More... | |
| EAPI const char * | eeze_udev_syspath_get_parent (const char *syspath) |
| Find the root device of a device from its syspath. More... | |
| EAPI Eina_List * | eeze_udev_syspath_get_parents (const char *syspath) |
Returns a list of all parent device syspaths for syspath. More... | |
| EAPI const char * | eeze_udev_syspath_get_devpath (const char *syspath) |
| Get the /dev/ path from the /sys/ path. More... | |
| EAPI const char * | eeze_udev_syspath_get_devname (const char *syspath) |
| Get the /dev/ name from the /sys/ path. More... | |
| EAPI const char * | eeze_udev_syspath_get_subsystem (const char *syspath) |
| Get the subsystem of a device from the /sys/ path. More... | |
| EAPI const char * | eeze_udev_syspath_get_property (const char *syspath, const char *property) |
| Get the property value of a device from the /sys/ path. More... | |
| EAPI const char * | eeze_udev_syspath_get_sysattr (const char *syspath, const char *sysattr) |
| Get the sysattr value of a device from the /sys/ path. More... | |
| EAPI Eina_Bool | eeze_udev_syspath_is_mouse (const char *syspath) |
| Checks whether the device is a mouse. More... | |
| EAPI Eina_Bool | eeze_udev_syspath_is_kbd (const char *syspath) |
| Checks whether the device is a keyboard. More... | |
| EAPI Eina_Bool | eeze_udev_syspath_is_touchpad (const char *syspath) |
| Checks whether the device is a touchpad. More... | |
| EAPI Eina_Bool | eeze_udev_syspath_is_joystick (const char *syspath) |
| Checks whether the device is a joystick. More... | |
These are functions which interact with the syspath (/sys/$PATH) of a device.
| EAPI const char* eeze_udev_devpath_get_syspath | ( | const char * | devpath | ) |
Get the syspath of a device from the /dev/ path.
| devpath | The /dev/ path of the device |
NULL on failureTakes "/dev/path" and returns the corresponding /sys/ path (without the "/sys/")
References eina_stringshare_add().
Referenced by eeze_disk_new(), and eeze_disk_new_from_mount().
| EAPI const char* eeze_udev_syspath_get_parent | ( | const char * | syspath | ) |
Find the root device of a device from its syspath.
| syspath | The syspath of a device, with or without "/sys/" |
Return a stringshared syspath (/sys/$syspath) for the parent device.
References EAPI, and eina_stringshare_add().
Returns a list of all parent device syspaths for syspath.
| syspath | The device to find parents of |
syspath References EAPI, eina_list_append(), and eina_stringshare_add().
| EAPI const char* eeze_udev_syspath_get_devpath | ( | const char * | syspath | ) |
Get the /dev/ path from the /sys/ path.
| syspath | The /sys/ path with or without the /sys/ |
NULL on failureTakes /sys/$PATH and turns it into the corresponding "/dev/x/y".
References EAPI, and eina_stringshare_add().
| EAPI const char* eeze_udev_syspath_get_devname | ( | const char * | syspath | ) |
Get the /dev/ name from the /sys/ path.
| syspath | The /sys/ path with or without the /sys/ |
NULL on failureTakes /sys/$PATH and turns it into the corresponding /dev/x/"y".
References EAPI, and eina_stringshare_add().
| EAPI const char* eeze_udev_syspath_get_subsystem | ( | const char * | syspath | ) |
Get the subsystem of a device from the /sys/ path.
| syspath | The /sys/ path with or without the /sys/ |
NULL on failureTakes /sys/$PATH and returns the corresponding device subsystem, such as "input" for keyboards/mice.
References EAPI, and eina_stringshare_add().
| EAPI const char* eeze_udev_syspath_get_property | ( | const char * | syspath, |
| const char * | property | ||
| ) |
Get the property value of a device from the /sys/ path.
| syspath | The /sys/ path with or without the /sys/ |
| property | The property to get; full list of these is a FIXME |
NULL on failure References EAPI, and eina_stringshare_add().
| EAPI const char* eeze_udev_syspath_get_sysattr | ( | const char * | syspath, |
| const char * | sysattr | ||
| ) |
Get the sysattr value of a device from the /sys/ path.
| syspath | The /sys/ path with or without the /sys/ |
| sysattr | The sysattr to get; full list of these is a FIXME |
NULL on failure References EAPI, and eina_stringshare_add().
Checks whether the device is a mouse.
| syspath | The /sys/ path with or without the /sys/ |
References EAPI, EINA_FALSE, and EINA_TRUE.
Checks whether the device is a keyboard.
| syspath | The /sys/ path with or without the /sys/ |
References EAPI, EINA_FALSE, and EINA_TRUE.
Checks whether the device is a touchpad.
| syspath | The /sys/ path with or without the /sys/ |
References EAPI, EINA_FALSE, and EINA_TRUE.
Checks whether the device is a joystick.
| syspath | The /sys/ path with or without the /sys/ |
References EAPI, EINA_FALSE, and EINA_TRUE.