Lines Matching full:txc
596 struct __kernel_timex txc; in stp_clear_leap() local
599 memset(&txc, 0, sizeof(txc)); in stp_clear_leap()
601 ret = do_adjtimex(&txc); in stp_clear_leap()
605 txc.modes = ADJ_STATUS; in stp_clear_leap()
606 txc.status &= ~(STA_INS|STA_DEL); in stp_clear_leap()
607 return do_adjtimex(&txc); in stp_clear_leap()
614 struct __kernel_timex txc; in stp_check_leap() local
646 memset(&txc, 0, sizeof(txc)); in stp_check_leap()
647 ret = do_adjtimex(&txc); in stp_check_leap()
651 txc.modes = ADJ_STATUS; in stp_check_leap()
653 txc.status |= STA_INS; in stp_check_leap()
655 txc.status |= STA_DEL; in stp_check_leap()
656 ret = do_adjtimex(&txc); in stp_check_leap()