HomeSort by relevance Sort by last modified time
    Searched refs:c_time (Results 1 - 5 of 5) sorted by null

  /external/ppp/pppd/
main.c 1241 struct timeval c_time; /* time at which to call routine */ member in struct:callout
1269 newp->c_time.tv_sec = timenow.tv_sec + secs;
1270 newp->c_time.tv_usec = timenow.tv_usec + usecs;
1271 if (newp->c_time.tv_usec >= 1000000) {
1272 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1273 newp->c_time.tv_usec %= 1000000;
    [all...]
  /external/blktrace/btt/
trace_complete.c 48 __out(ofp, iop->c_time, IOP_C, iop->c_sec, iop->c_nsec, 1);
87 q_iop->c_time = c_iop->t.time;
inlines.h 200 static inline void update_q2c(struct io *iop, __u64 c_time)
203 UPDATE_AVGS(q2c_dm, iop, iop->pip, c_time);
205 UPDATE_AVGS(q2c, iop, iop->pip, c_time);
271 static inline void update_d2c(struct io *iop, __u64 c_time)
273 UPDATE_AVGS(d2c, iop, iop->pip, c_time);
globals.h 157 __u64 bytes_left, g_time, i_time, m_time, d_time, c_time, d_sec, c_sec; member in struct:io
  /external/openssl/ssl/
ssltest.c 225 int doit_biopair(SSL *s_ssl,SSL *c_ssl,long bytes,clock_t *s_time,clock_t *c_time);
427 clock_t s_time = 0, c_time = 0; local
932 ret=doit_biopair(s_ssl,c_ssl,bytes,&s_time,&c_time);
953 (double)c_time/CLOCKS_PER_SEC);
961 (double)c_time);
991 clock_t *s_time, clock_t *c_time)
1138 /* c_time and s_time increments will typically be very small
1146 *c_time += (clock() - c_clock);
    [all...]

Completed in 863 milliseconds