Lines Matching full:ioctl
57 #include <sys/ioctl.h>
83 if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE))
84 perror("ioctl"), exit(1);
91 if (ioctl(fd, KCOV_ENABLE, KCOV_TRACE_PC))
92 perror("ioctl"), exit(1);
93 /* 在调用 ioctl() 之后重置覆盖率。 */
104 if (ioctl(fd, KCOV_DISABLE, 0))
105 perror("ioctl"), exit(1);
171 if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE))
172 perror("ioctl"), exit(1);
182 if (ioctl(fd, KCOV_ENABLE, KCOV_TRACE_CMP))
183 perror("ioctl"), exit(1);
206 if (ioctl(fd, KCOV_DISABLE, 0))
207 perror("ioctl"), exit(1);
232 ioctl 都接受可以识别特定覆盖率收集片段的句柄。句柄的使用方式取决于匹配代码片段执
320 if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE))
321 perror("ioctl"), exit(1);
338 if (ioctl(fd, KCOV_REMOTE_ENABLE, arg))
339 perror("ioctl"), free(arg), exit(1);
352 if (ioctl(fd, KCOV_DISABLE, 0))
353 perror("ioctl"), exit(1);