Lines Matching defs:USBProxyService

22 #include "USBProxyService.h"
33 USBProxyService::USBProxyService(Host*) {}
34 USBProxyService::~USBProxyService() {}
35 HRESULT USBProxyService::init() { return S_OK; }
36 int USBProxyService::start() { return VINF_SUCCESS; }
37 int USBProxyService::stop() { return VINF_SUCCESS; }
38 RWLockHandle *USBProxyService::lockHandle() const { return NULL; }
39 void *USBProxyService::insertFilter(USBFILTER const*) { return NULL; }
40 void USBProxyService::removeFilter(void*) {}
41 int USBProxyService::captureDevice(HostUSBDevice*) { return VINF_SUCCESS; }
42 void USBProxyService::captureDeviceCompleted(HostUSBDevice*, bool) {}
43 void USBProxyService::detachingDevice(HostUSBDevice*) {}
44 int USBProxyService::releaseDevice(HostUSBDevice*) { return VINF_SUCCESS; }
45 void USBProxyService::releaseDeviceCompleted(HostUSBDevice*, bool) {}
46 void USBProxyService::serviceThreadInit() {}
47 void USBProxyService::serviceThreadTerm() {}
48 int USBProxyService::wait(unsigned int) { return VINF_SUCCESS; }
49 int USBProxyService::interruptWait() { return VINF_SUCCESS; }
50 PUSBDEVICE USBProxyService::getDevices() { return NULL; }
51 void USBProxyService::deviceAdded(ComObjPtr<HostUSBDevice> &aDevice, SessionMachinesList &llOpenedMachines, PUSBDEVICE aUSBDevice) {}
52 void USBProxyService::deviceRemoved(ComObjPtr<HostUSBDevice> &aDevice) {}
53 void USBProxyService::deviceChanged(ComObjPtr<HostUSBDevice> &aDevice, SessionMachinesList*, SessionMachine*) {}
54 bool USBProxyService::updateDeviceState(HostUSBDevice*, USBDEVICE*, bool*, SessionMachine**) { return true; }
55 bool USBProxyService::updateDeviceStateFake(HostUSBDevice*, USBDEVICE*, bool*, SessionMachine**) { return true; }
56 bool USBProxyService::isActive() { return true; }
65 int USBProxyService::getLastError(void)