Home
last modified time | relevance | path

Searched refs:usbController (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBMouse.cs30 public static void AttachUSBMouse(this USBIPServer usbController, int? port = null) in AttachUSBMouse() argument
32 … if(usbController.Children.Where(m => m.Peripheral.GetType() == typeof(USBMouse)).Count() != 0) in AttachUSBMouse()
37 usbController.Register(new USBMouse(), port); in AttachUSBMouse()
40 public static void MoveMouse(this USBIPServer usbController, int x, int y) in MoveMouse() argument
42 …var mouse = usbController.Children.Where(m => m.Peripheral.GetType() == typeof(USBMouse)).Select(m… in MoveMouse()
DUSBKeyboard.cs25 public static void AttachUSBKeyboard(this USBIPServer usbController, int? port = null) in AttachUSBKeyboard() argument
27 … if(usbController.Children.Where(m => m.Peripheral.GetType() == typeof(USBKeyboard)).Count() != 0) in AttachUSBKeyboard()
32 usbController.Register(new USBKeyboard(), port); in AttachUSBKeyboard()
35 public static void KeyboardType(this USBIPServer usbController, string text) in KeyboardType() argument
37 …var keyboard = usbController.Children.Where(m => m.Peripheral.GetType() == typeof(USBKeyboard)).Se… in KeyboardType()
DUSBPendrive.cs37 …public static void PendriveFromFile(this USBIPServer usbController, string file, bool persistent =… in PendriveFromFile() argument
40 usbController.Register(pendrive, port); in PendriveFromFile()