Home | History | Annotate | Download | only in src

Lines Matching full:ioctl

17 #include <sys/ioctl.h>
64 retval = ioctl(fd, RTC_UIE_ON, 0);
71 perror("RTC_UIE_ON ioctl");
116 retval = ioctl(fd, RTC_UIE_OFF, 0);
118 perror("RTC_UIE_OFF ioctl");
124 retval = ioctl(fd, RTC_RD_TIME, &rtc_tm);
126 perror("RTC_RD_TIME ioctl");
147 retval = ioctl(fd, RTC_ALM_SET, &rtc_tm);
154 perror("RTC_ALM_SET ioctl");
159 retval = ioctl(fd, RTC_ALM_READ, &rtc_tm);
161 perror("RTC_ALM_READ ioctl");
169 retval = ioctl(fd, RTC_AIE_ON, 0);
171 perror("RTC_AIE_ON ioctl");
187 retval = ioctl(fd, RTC_AIE_OFF, 0);
189 perror("RTC_AIE_OFF ioctl");
195 retval = ioctl(fd, RTC_IRQP_READ, &tmp);
202 perror("RTC_IRQP_READ ioctl");
213 retval = ioctl(fd, RTC_IRQP_SET, tmp);
221 perror("RTC_IRQP_SET ioctl");
229 retval = ioctl(fd, RTC_PIE_ON, 0);
231 perror("RTC_PIE_ON ioctl");
248 retval = ioctl(fd, RTC_PIE_OFF, 0);
250 perror("RTC_PIE_OFF ioctl");