Lines Matching refs:delay_ms
339 unsigned long delay_ms; member
839 static void mod_tcpm_delayed_work(struct tcpm_port *port, unsigned int delay_ms) in mod_tcpm_delayed_work() argument
841 if (delay_ms) { in mod_tcpm_delayed_work()
842 tcpm_timer_init(port, delay_ms); in mod_tcpm_delayed_work()
850 unsigned int delay_ms) in tcpm_set_state() argument
853 __func__, __LINE__, delay_ms, tcpm_states[state]); in tcpm_set_state()
855 if (delay_ms) { in tcpm_set_state()
857 tcpm_states[port->state], tcpm_states[state], delay_ms, in tcpm_set_state()
860 mod_tcpm_delayed_work(port, delay_ms); in tcpm_set_state()
861 port->delay_ms = delay_ms; in tcpm_set_state()
880 unsigned int delay_ms) in tcpm_set_state_cond() argument
883 tcpm_set_state(port, state, delay_ms); in tcpm_set_state_cond()
886 delay_ms ? "delayed " : "", in tcpm_set_state_cond()
888 delay_ms, tcpm_states[port->enter_state], in tcpm_set_state_cond()
2799 tcpm_states[port->delayed_state], port->delay_ms); in tcpm_state_machine()