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

  /external/opencore/oscl/oscl/osclproc/src/
oscl_semaphore.cpp 141 struct timeval timenow; local
142 gettimeofday(&timenow, NULL);
144 uint32 targ_sec = timenow.tv_sec + timeout_sec;
145 uint32 targ_usec = timenow.tv_usec + timeout_usec;
oscl_scheduler.cpp 1010 uint32 timenow = OsclTickCount::TickCount(); local
1011 anActive->iPVReadyQLink.iTimeToRunTicks = timenow + (aDelayMicrosec * 2 / tickperiod + 1) / 2;
1015 LOGPERF2((0, "PVSCHED:%s AO %s Timer delay %d TimeToRunTicks %d Timenow %d"
1018 , timenow));
    [all...]
  /external/openssl/ssl/
d1_lib.c 278 struct timeval timenow; local
287 get_current_time(&timenow);
290 if (s->d1->next_timeout.tv_sec < timenow.tv_sec ||
291 (s->d1->next_timeout.tv_sec == timenow.tv_sec &&
292 s->d1->next_timeout.tv_usec <= timenow.tv_usec))
300 timeleft->tv_sec -= timenow.tv_sec;
301 timeleft->tv_usec -= timenow.tv_usec;
  /external/opencore/pvmi/pvmf/src/
pvmf_pool_buffer_allocator.cpp 111 TimeValue timenow; local
112 int ms = timenow.to_msec();
  /external/openssl/crypto/bio/
bss_dgram.c 188 struct timeval timenow, timeleft; local
208 get_current_time(&timenow);
212 timeleft.tv_sec -= timenow.tv_sec;
213 timeleft.tv_usec -= timenow.tv_usec;
  /external/ppp/pppd/
main.c 1248 static struct timeval timenow; /* Current time */ variable in typeref:struct:timeval
1268 gettimeofday(&timenow, NULL);
1269 newp->c_time.tv_sec = timenow.tv_sec + secs;
1270 newp->c_time.tv_usec = timenow.tv_usec + usecs;
    [all...]
  /external/opencore/protocols/systems/3g-324m_pvterminal/common/include/
h324utils.h 202 TimeValue timenow;\
203 a = timenow;\
  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
lowerlayer.cpp 357 TimeValue timenow; local
370 iStartMuxTime = timenow;
372 iLastMuxTime = timenow;
523 PVLOGGER_LOG_USE_ONLY(TimeValue timenow);
524 PVLOGGER_LOG_USE_ONLY(TimeValue delta_t = timenow - iStartTimeTx);
567 TimeValue timenow; local
568 iLevelSetupTime = timenow - iStartTimeTx;
logicalchannel.cpp 289 TimeValue timenow; local
292 PVMF_OUTGOING_AUDIO_LOGDATATRAFFIC((0, "Outgoing audio frames received. Stats: Entry time=%ud, lcn=%d, size=%d", timenow.to_msec(), lcn, mediaData->getFilledSize()));
296 PVMF_OUTGOING_VIDEO_LOGDATATRAFFIC((0, "Outgoing video frames received.Stats: Entry time=%ud, lcn=%d, size=%d", timenow.to_msec(), lcn, mediaData->getFilledSize()));
1274 TimeValue timenow; local
    [all...]

Completed in 266 milliseconds