Lines Matching refs:txc
592 struct __kernel_timex txc; in stp_clear_leap() local
595 memset(&txc, 0, sizeof(txc)); in stp_clear_leap()
597 ret = do_adjtimex(&txc); in stp_clear_leap()
601 txc.modes = ADJ_STATUS; in stp_clear_leap()
602 txc.status &= ~(STA_INS|STA_DEL); in stp_clear_leap()
603 return do_adjtimex(&txc); in stp_clear_leap()
610 struct __kernel_timex txc; in stp_check_leap() local
642 memset(&txc, 0, sizeof(txc)); in stp_check_leap()
643 ret = do_adjtimex(&txc); in stp_check_leap()
647 txc.modes = ADJ_STATUS; in stp_check_leap()
649 txc.status |= STA_INS; in stp_check_leap()
651 txc.status |= STA_DEL; in stp_check_leap()
652 ret = do_adjtimex(&txc); in stp_check_leap()