/external/dhcpcd-6.8.2/dev/ |
D | udev.c | 29 # warning This version of udev is too old does not support 32 # warning udev-settle service or similar if starting 44 static struct udev *udev; variable 62 device = udev_device_new_from_subsystem_sysname(udev, "net", ifname); in udev_initialized() 113 if (udev) { in udev_stop() 114 udev_unref(udev); in udev_stop() 115 udev = NULL; in udev_stop() 124 if (udev) { in udev_start() 130 udev = udev_new(); in udev_start() 131 if (udev == NULL) { in udev_start() [all …]
|
D | Makefile | 28 udev.So: 32 udev.so:
|
/external/autotest/client/site_tests/graphics_GpuReset/src/ |
D | gpureset.c | 110 struct udev *udev; in drm_open_matching() local 118 udev = udev_new(); in drm_open_matching() 119 if (udev == NULL) in drm_open_matching() 123 e = udev_enumerate_new(udev); in drm_open_matching() 128 device = udev_device_new_from_syspath(udev, path); in drm_open_matching() 152 udev_unref(udev); in drm_open_matching() 160 struct udev* udev; in udev_init() local 162 udev = udev_new(); in udev_init() 163 if (!udev) { in udev_init() 169 struct udev_monitor* monitor = udev_monitor_new_from_netlink(udev, "udev"); in udev_init() [all …]
|
/external/libusb-compat/examples/ |
D | testlibusb.c | 64 usb_dev_handle *udev; in print_device() local 69 udev = usb_open(dev); in print_device() 70 if (udev) { in print_device() 72 ret = usb_get_string_simple(udev, dev->descriptor.iManufacturer, string, sizeof(string)); in print_device() 83 ret = usb_get_string_simple(udev, dev->descriptor.iProduct, string, sizeof(string)); in print_device() 101 if (udev && verbose) { in print_device() 103 ret = usb_get_string_simple(udev, dev->descriptor.iSerialNumber, string, sizeof(string)); in print_device() 110 if (udev) in print_device() 111 usb_close(udev); in print_device()
|
/external/libmtp/ |
D | configure.ac | 17 # Optionally set install location of udev 18 UDEV=/usr/lib/udev 19 AC_ARG_WITH(udev, optwith 20 AC_HELP_STRING([--with-udev=DIR], 21 [directory where udev is installed [default=/usr/lib/udev]]), 25 # Optionally set name of udev rules file, default 33 AC_ARG_WITH(udev-rules, 34 AC_HELP_STRING([--with-udev-rules=NAME], 35 [file name for udev rules [default=69-libmtp.rules]]), 41 AC_ARG_WITH(udev-group, [all …]
|
D | INSTALL | 127 The "libexedir" in the configure file is hardcoded to /lib/udev to 167 Linux udev hotplugging 171 and rely solely on udev, and rules stored below /etc/udev/rules.d to 181 scripts distributed by recent versions of udev to be a 185 Ancient udev, HAL, libusb 188 The old script for udev used to set the device access to "666" 193 udev rules. 195 At one point HAL was used to take devices detected by udev and 199 information directly from udev instead.
|
D | hotplug.sh.in | 7 UDEVPATH=/etc/udev/rules.d
|
/external/webrtc/talk/media/devices/ |
D | linuxdeviceinfo.cc | 71 udev* instance() { return udev_; } in instance() 75 udev* udev_; 80 ScopedUdevEnumerate(LibUDevSymbolTable* libudev, udev* udev) in ScopedUdevEnumerate() argument 82 enumerate_ = libudev_->udev_enumerate_new()(udev); in ScopedUdevEnumerate()
|
/external/ltp/testcases/kernel/device-drivers/usb/tusb/ |
D | tusb.c | 298 struct usb_device *udev = in test_find_usbdev() local 307 ltp_usb.dev = udev; in test_find_usbdev() 322 udev = usb_alloc_dev(NULL, bus); in test_find_usbdev() 323 if (udev) { in test_find_usbdev() 325 memcpy(ltp_usb.dev, udev, sizeof(struct usb_device)); in test_find_usbdev() 332 usb_connect(udev); in test_find_usbdev() 333 usb_new_device(udev); in test_find_usbdev()
|
/external/autotest/client/site_tests/platform_UdevVars/ |
D | control | 10 Verifies that ChromeOS-specific udev variables are set correctly by udev rules.
|
D | platform_UdevVars.py | 31 devices = self.udev.list_devices(subsystem='input') 126 self.udev = pyudev.Context()
|
/external/libusb/ |
D | configure.ac | 111 AC_ARG_ENABLE([udev], optenable 112 …[AC_HELP_STRING([--enable-udev], [use udev for device enumeration and hotplug support (recommended… 115 # system has udev. use it or fail! 116 AC_CHECK_HEADERS([libudev.h],[],[AC_ERROR(["udev support requested but libudev not installed"])]) 117 …AC_CHECK_LIB([udev], [udev_new], [], [AC_ERROR(["udev support requested but libudev not installed"… 118 AC_DEFINE(USE_UDEV, 1, [Use udev for device enumeration/hotplug])
|
/external/autotest/client/site_tests/logging_UdevCrash/ |
D | control | 7 PURPOSE = "Verify udev triggered crash works as expected." 16 Fake trackpad failure to trigger crash report with udev type, and
|
/external/autotest/client/site_tests/graphics_GpuReset/ |
D | control | 9 Detection of udev event notification of a GPU hang. 24 erroneous GPU command packet and send it to the GPU, and wait for a udev
|
/external/libusb-compat/libusb/ |
D | core.c | 657 usb_dev_handle *udev = malloc(sizeof(*udev)); in usb_open() local 658 if (!udev) in usb_open() 661 r = libusb_open((libusb_device *) dev->dev, &udev->handle); in usb_open() 664 free(udev); in usb_open() 669 udev->last_claimed_interface = -1; in usb_open() 670 udev->device = dev; in usb_open() 671 return udev; in usb_open()
|
D | usb.h | 295 int usb_get_descriptor_by_endpoint(usb_dev_handle *udev, int ep, 297 int usb_get_descriptor(usb_dev_handle *udev, unsigned char type,
|
/external/linux-kselftest/tools/testing/selftests/rcutorture/doc/ |
D | initrd.txt | 53 # Note that this only becomes /dev on the real filesystem if udev's scripts 55 if ! mount -t devtmpfs -o mode=0755 udev /dev; then 57 mount -t tmpfs -o mode=0755 udev /dev
|
/external/vulkan-validation-layers/cmake/ |
D | FindUDev.cmake | 15 find_library(UDEV_LIBRARY NAMES udev
|
/external/ltp/testcases/kernel/firmware/fw_load_user/ |
D | README | 2 firmware loading changed to direct loading (by-pass udev). The test consists
|
/external/autotest/client/site_tests/network_UdevRename/ |
D | control | 14 In particular, we check that neither restarting udev, nor unloading
|
/external/autotest/server/site_tests/enterprise_CFM_SiSFwUpdater/ |
D | control | 18 cycle the corresponding usb port. This should triger the udev rule to invoke
|
/external/ltp/testcases/kernel/firmware/fw_load_kernel/ |
D | README | 2 firmware loading changed to direct loading (by-pass udev). The test consists
|
/external/selinux/python/sepolicy/sepolicy/help/ |
D | file_equiv.txt | 9 …when ever the matchpathcon function is called. Tools like restorecon/rpm/udev and others will all…
|
/external/libdrm/ |
D | Makefile.am | 27 --enable-udev \
|
/external/libusb/libusb/os/ |
D | linux_udev.c | 46 static struct udev *udev_ctx = NULL;
|