Lines Matching full:txc
601 struct __kernel_timex txc; in stp_clear_leap() local
604 memset(&txc, 0, sizeof(txc)); in stp_clear_leap()
606 ret = do_adjtimex(&txc); in stp_clear_leap()
610 txc.modes = ADJ_STATUS; in stp_clear_leap()
611 txc.status &= ~(STA_INS|STA_DEL); in stp_clear_leap()
612 return do_adjtimex(&txc); in stp_clear_leap()
619 struct __kernel_timex txc; in stp_check_leap() local
651 memset(&txc, 0, sizeof(txc)); in stp_check_leap()
652 ret = do_adjtimex(&txc); in stp_check_leap()
656 txc.modes = ADJ_STATUS; in stp_check_leap()
658 txc.status |= STA_INS; in stp_check_leap()
660 txc.status |= STA_DEL; in stp_check_leap()
661 ret = do_adjtimex(&txc); in stp_check_leap()