Lines Matching refs:txc
590 struct __kernel_timex txc; in stp_clear_leap() local
593 memset(&txc, 0, sizeof(txc)); in stp_clear_leap()
595 ret = do_adjtimex(&txc); in stp_clear_leap()
599 txc.modes = ADJ_STATUS; in stp_clear_leap()
600 txc.status &= ~(STA_INS|STA_DEL); in stp_clear_leap()
601 return do_adjtimex(&txc); in stp_clear_leap()
608 struct __kernel_timex txc; in stp_check_leap() local
640 memset(&txc, 0, sizeof(txc)); in stp_check_leap()
641 ret = do_adjtimex(&txc); in stp_check_leap()
645 txc.modes = ADJ_STATUS; in stp_check_leap()
647 txc.status |= STA_INS; in stp_check_leap()
649 txc.status |= STA_DEL; in stp_check_leap()
650 ret = do_adjtimex(&txc); in stp_check_leap()