| 341 | static jmethodID g_midHIDDeviceManagerClose; |
| 342 | |
| 343 | static uint64_t get_timespec_ms( const struct timespec &ts ) |
| 344 | { |
| 345 | return (uint64_t)ts.tv_sec * 1000 + ts.tv_nsec / 1000000; |
| 346 | } |
| 347 | |
| 348 | class CHIDDevice |
| 349 | { |
no outgoing calls
no test coverage detected