Lines Matching refs:txc
603 struct __kernel_timex txc; in stp_clear_leap() local
606 memset(&txc, 0, sizeof(txc)); in stp_clear_leap()
608 ret = do_adjtimex(&txc); in stp_clear_leap()
612 txc.modes = ADJ_STATUS; in stp_clear_leap()
613 txc.status &= ~(STA_INS|STA_DEL); in stp_clear_leap()
614 return do_adjtimex(&txc); in stp_clear_leap()
621 struct __kernel_timex txc; in stp_check_leap() local
653 memset(&txc, 0, sizeof(txc)); in stp_check_leap()
654 ret = do_adjtimex(&txc); in stp_check_leap()
658 txc.modes = ADJ_STATUS; in stp_check_leap()
660 txc.status |= STA_INS; in stp_check_leap()
662 txc.status |= STA_DEL; in stp_check_leap()
663 ret = do_adjtimex(&txc); in stp_check_leap()