Home
last modified time | relevance | path

Searched refs:c_time (Results 1 – 5 of 5) sorted by relevance

/external/ppp/pppd/
Dmain.c1218 struct timeval c_time; /* time at which to call routine */ member
1246 newp->c_time.tv_sec = timenow.tv_sec + secs;
1247 newp->c_time.tv_usec = timenow.tv_usec + usecs;
1248 if (newp->c_time.tv_usec >= 1000000) {
1249 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1250 newp->c_time.tv_usec %= 1000000;
1257 if (newp->c_time.tv_sec < p->c_time.tv_sec
1258 || (newp->c_time.tv_sec == p->c_time.tv_sec
1259 && newp->c_time.tv_usec < p->c_time.tv_usec))
1301 if (!(p->c_time.tv_sec < timenow.tv_sec in calltimeout()
[all …]
/external/blktrace/btt/
Dinlines.h200 static inline void update_q2c(struct io *iop, __u64 c_time) in update_q2c() argument
203 UPDATE_AVGS(q2c_dm, iop, iop->pip, c_time); in update_q2c()
205 UPDATE_AVGS(q2c, iop, iop->pip, c_time); in update_q2c()
271 static inline void update_d2c(struct io *iop, __u64 c_time) in update_d2c() argument
273 UPDATE_AVGS(d2c, iop, iop->pip, c_time); in update_d2c()
Dtrace_complete.c48 __out(ofp, iop->c_time, IOP_C, iop->c_sec, iop->c_nsec, 1); in display_io_track()
87 q_iop->c_time = c_iop->t.time; in handle_complete()
Dglobals.h157 __u64 bytes_left, g_time, i_time, m_time, d_time, c_time, d_sec, c_sec; member
/external/openssl/ssl/
Dssltest.c225 int doit_biopair(SSL *s_ssl,SSL *c_ssl,long bytes,clock_t *s_time,clock_t *c_time);
421 clock_t s_time = 0, c_time = 0; in main() local
862 ret=doit_biopair(s_ssl,c_ssl,bytes,&s_time,&c_time); in main()
883 (double)c_time/CLOCKS_PER_SEC); in main()
891 (double)c_time); in main()
921 clock_t *s_time, clock_t *c_time) in doit_biopair() argument
1076 *c_time += (clock() - c_clock); in doit_biopair()