| 212 | } |
| 213 | |
| 214 | IOReturn USBInterfaceShim::hciCommand(void* command, UInt16 length) |
| 215 | { |
| 216 | IOUSBDevRequest request = |
| 217 | { |
| 218 | .bmRequestType = USBmakebmRequestType(kUSBOut, kUSBClass, kUSBDevice), |
| 219 | .bRequest = 0, |
| 220 | .wValue = 0, |
| 221 | .wIndex = 0, |
| 222 | .wLength = length, |
| 223 | .pData = command |
| 224 | }; |
| 225 | return m_pInterface->DeviceRequest(&request); |
| 226 | } |
| 227 | |
| 228 | USBPipeShim::USBPipeShim() |
| 229 | { |
nothing calls this directly
no outgoing calls
no test coverage detected