| 372 | |
| 373 | template <typename T> |
| 374 | static inline int mali_ioctl(int fd, T &arg) |
| 375 | { |
| 376 | auto *hdr = &arg.header; |
| 377 | const int cmd = _IOC(_IOC_READ | _IOC_WRITE, LINUX_UK_BASE_MAGIC, hdr->id, sizeof(T)); |
| 378 | |
| 379 | if (ioctl(fd, cmd, &arg)) |
| 380 | return -1; |
| 381 | if (hdr->ret) |
| 382 | return -1; |
| 383 | |
| 384 | return 0; |
| 385 | } |
| 386 | } // namespace mali_userspace |
| 387 | |
| 388 | #endif /* DOXYGEN_SKIP_THIS */ |
no outgoing calls
no test coverage detected