Lines Matching refs:txc
595 struct __kernel_timex txc; in stp_clear_leap() local
598 memset(&txc, 0, sizeof(txc)); in stp_clear_leap()
600 ret = do_adjtimex(&txc); in stp_clear_leap()
604 txc.modes = ADJ_STATUS; in stp_clear_leap()
605 txc.status &= ~(STA_INS|STA_DEL); in stp_clear_leap()
606 return do_adjtimex(&txc); in stp_clear_leap()
613 struct __kernel_timex txc; in stp_check_leap() local
645 memset(&txc, 0, sizeof(txc)); in stp_check_leap()
646 ret = do_adjtimex(&txc); in stp_check_leap()
650 txc.modes = ADJ_STATUS; in stp_check_leap()
652 txc.status |= STA_INS; in stp_check_leap()
654 txc.status |= STA_DEL; in stp_check_leap()
655 ret = do_adjtimex(&txc); in stp_check_leap()