HomeSort by relevance Sort by last modified time
    Searched defs:end_at (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/system_wrappers/source/
event_posix.cc 121 timespec end_at; local
124 clock_gettime(CLOCK_REALTIME, &end_at);
126 clock_gettime(CLOCK_MONOTONIC, &end_at);
134 TIMEVAL_TO_TIMESPEC(&value, &end_at);
136 end_at.tv_sec += timeout / 1000;
137 end_at.tv_nsec += (timeout - (timeout / 1000) * 1000) * E6;
139 if (end_at.tv_nsec >= E9) {
140 end_at.tv_sec++;
141 end_at.tv_nsec -= E9;
143 ret_val = pthread_cond_timedwait(&cond_, &mutex_, &end_at);
240 timespec end_at; local
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_uio.h 943 int32_t end_at; /* end at this one */ member in struct:sctp_cwnd_log_req
    [all...]

Completed in 189 milliseconds