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

  /packages/apps/Nfc/nci/jni/
CondVar.cpp 103 struct timespec absoluteTime;
105 if (clock_gettime (CLOCK_MONOTONIC, &absoluteTime) == -1)
111 absoluteTime.tv_sec += millisec / 1000;
112 long ns = absoluteTime.tv_nsec + ((millisec % 1000) * 1000000);
115 absoluteTime.tv_sec++;
116 absoluteTime.tv_nsec = ns - 1000000000;
119 absoluteTime.tv_nsec = ns;
122 int waitResult = pthread_cond_timedwait (&mCondition, mutex.nativeHandle(), &absoluteTime);
  /system/nfc/halimpl/bcm2079x/adaptation/
CondVar.cpp 94 struct timespec absoluteTime;
96 if (clock_gettime(CLOCK_MONOTONIC, &absoluteTime) == -1) {
99 absoluteTime.tv_sec += millisec / 1000;
100 long ns = absoluteTime.tv_nsec + ((millisec % 1000) * 1000000);
102 absoluteTime.tv_sec++;
103 absoluteTime.tv_nsec = ns - 1000000000;
105 absoluteTime.tv_nsec = ns;
109 pthread_cond_timedwait(&mCondition, mutex.nativeHandle(), &absoluteTime);
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
RecurrentTimer.h 60 TimePoint absoluteTime = now - Nanos(now.time_since_epoch().count() % interval.count());
64 mCookieToEventsMap[cookie] = { interval, cookie, absoluteTime };
83 TimePoint absoluteTime; // Absolute time of the next event.
87 // to previous absoluteTime.
88 int intervalMultiplier = (now - absoluteTime) / interval;
90 absoluteTime += intervalMultiplier * interval;
109 if (event.absoluteTime <= now) {
114 if (nextEventTime > event.absoluteTime) {
115 nextEventTime = event.absoluteTime;
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi_3.9.0.v20130529-1710.jar 

Completed in 177 milliseconds