Searched refs:lasttime (Results 1 – 3 of 3) sorted by relevance
/external/ppp/pppd/ |
D | tty.c | 988 struct timeval lasttime; local 1085 gettimeofday(&lasttime, NULL); 1087 putc(lasttime.tv_sec >> 24, recordf); 1088 putc(lasttime.tv_sec >> 16, recordf); 1089 putc(lasttime.tv_sec >> 8, recordf); 1090 putc(lasttime.tv_sec, recordf); 1091 lasttime.tv_usec = 0; 1148 if (!record_write(recordf, 4, NULL, 0, &lasttime)) 1153 if (!record_write(recordf, 2, ibufp, nibuf, &lasttime)) 1175 if (!record_write(recordf, 3, NULL, 0, &lasttime)) [all …]
|
/external/python/cpython2/Lib/plat-mac/ |
D | pimp.py | 162 lasttime = 0 169 if int(time.time()) != lasttime: 171 lasttime = int(time.time())
|
/external/valgrind/coregrind/m_scheduler/ |
D | scheduler.c | 2197 static UInt lasttime = 0; in scheduler_sanity() local 2200 if ((!bad) && (lasttime + 4000/*ms*/ <= now)) { in scheduler_sanity() 2201 lasttime = now; in scheduler_sanity()
|