Home | History | Annotate | Download | only in qemu

Lines Matching refs:BUS

11  *      Added flexible support for /dev/bus/usb /sys/bus/usb/devices in addition
12 * to the legacy /proc/bus/usb USB device discovery and handling
80 #define USBPROCBUS_PATH "/proc/bus/usb"
83 #define USBDEVBUS_PATH "/dev/bus/usb"
84 #define USBSYSBUS_PATH "/sys/bus/usb"
1054 * Use /proc/bus/usb/devices or /dev/bus/usb/devices file to determine
1056 * are moving to /sys/bus/usb
1093 if (get_tag_value(buf, sizeof(buf), line, "Bus=", " ") < 0)
1173 * Use /sys/bus/usb/devices/ directory to determine host's USB
1270 /* devices found in /proc/bus/usb/ */
1280 /* devices found in /dev/bus/usb/ */
1289 /* devices found in /dev/bus/usb/ (yes - not a mistake!) */
1384 * auto:bus:dev[:vid:pid]
1385 * auto:bus.dev[:vid:pid]
1387 * bus - bus number (dec, * means any)
1396 enum { BUS, DEV, VID, PID, DONE };
1405 for (i = BUS; i < DONE; i++) {
1414 case BUS: f->bus_num = strtol(p, NULL, 10); break;
1536 'bus.addr' (decimal numbers) or
1680 char bus[10], addr[10], vid[10], pid[10];
1681 dec2str(f->bus_num, bus, sizeof(bus));
1686 bus, addr, vid, pid);