Lines Matching refs:seconds
97 int days, hours, minutes, seconds; in rusers_reply() local
129 seconds = idle; in rusers_reply()
130 days = seconds / (60 * 60 * 24); in rusers_reply()
131 seconds %= (60 * 60 * 24); in rusers_reply()
132 hours = seconds / (60 * 60); in rusers_reply()
133 seconds %= (60 * 60); in rusers_reply()
134 minutes = seconds / 60; in rusers_reply()
135 seconds %= 60; in rusers_reply()
137 sprintf(idle_time, "%d:%02d", minutes, seconds); in rusers_reply()
140 hours, minutes, seconds); in rusers_reply()
143 days, hours, minutes, seconds); in rusers_reply()