Lines Matching defs:level
71 static void usb_dprintf(int level, char *format, ...);
153 * sets debug level for tracing
156 usb_set_debug(int level)
160 level = atoi(getenv("SUN_LIBUSBUGEN_DEBUG"));
164 level = atoi(getenv("SUN_LIBUSB_DEBUG"));
167 if (level < 0)
170 libusb_debug = level;
173 "Setting debugging level to %d (%s)\n",
174 level, level ? "on" : "off");
179 * not much to initialize. just set debug level
2980 * prints out tracing messages according to level
2983 usb_dprintf(int level, char *format, ...)
2991 if (libusb_debug >= level) {