HomeSort by relevance Sort by last modified time
    Searched refs:now (Results 1 - 25 of 1570) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/ril/librilutils/
librilutils.c 21 struct timespec now; local
22 clock_gettime(CLOCK_MONOTONIC, &now);
23 return now.tv_sec * 1000000000LL + now.tv_nsec;
  /development/tools/idegen/src/
Stopwatch.java 25 long now = System.currentTimeMillis(); local
26 Log.info(label + ": " + (now - last) + "ms");
27 last = now;
  /build/tools/droiddoc/templates-ds/
timestamp.cs 1 var BUILD_TIMESTAMP = "<?cs var:page.now ?>";
  /build/tools/droiddoc/templates-ndk/
timestamp.cs 1 var BUILD_TIMESTAMP = "<?cs var:page.now ?>";
  /build/tools/droiddoc/templates-sac/
timestamp.cs 1 var BUILD_TIMESTAMP = "<?cs var:page.now ?>";
  /build/tools/droiddoc/templates-sdk/
timestamp.cs 1 var BUILD_TIMESTAMP = "<?cs var:page.now ?>";
  /build/tools/droiddoc/templates-sdk-dev/
timestamp.cs 1 var BUILD_TIMESTAMP = "<?cs var:page.now ?>";
  /external/doclava/res/assets/templates/
timestamp.cs 1 var BUILD_TIMESTAMP = "<?cs var:page.now ?>";
  /external/valgrind/helgrind/tests/
cond_timedwait_test.c 9 struct timespec now; local
10 memset(&now, 0, sizeof(now));
13 pthread_cond_timedwait(&cond, &mutex, &now);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strftime.py 36 def _update_variables(self, now):
38 self.gmt = time.gmtime(now)
39 now = time.localtime(now)
41 if now[3] < 12: self.ampm='(AM|am)'
44 self.jan1 = time.localtime(time.mktime((now[0], 1, 1, 0, 0, 0, 0, 1, 0)))
47 if now[8]: self.tz = time.tzname[1]
52 if now[3] > 12: self.clock12 = now[3] - 12
53 elif now[3] > 0: self.clock12 = now[3
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strftime.py 36 def _update_variables(self, now):
38 self.gmt = time.gmtime(now)
39 now = time.localtime(now)
41 if now[3] < 12: self.ampm='(AM|am)'
44 self.jan1 = time.localtime(time.mktime((now[0], 1, 1, 0, 0, 0, 0, 1, 0)))
47 if now[8]: self.tz = time.tzname[1]
52 if now[3] > 12: self.clock12 = now[3] - 12
53 elif now[3] > 0: self.clock12 = now[3
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
TimeUtils.cpp 47 struct timespec now;
48 clock_gettime(CLOCK_MONOTONIC, &now);
49 long long iDiff = (now.tv_sec * 1000LL) + now.tv_nsec/1000000LL;
54 struct timeval now;
55 gettimeofday(&now, NULL);
56 long long iDiff = (now.tv_sec * 1000LL) + now.tv_usec/1000LL;
  /external/libcxx/test/std/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 16 // static time_point now();
24 C::time_point t1 = C::now();
25 C::time_point t2 = C::now();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 14 // static time_point now();
22 C::time_point t1 = C::now();
23 C::time_point t2 = C::now();
  /ndk/tests/device/test-gnustl-2/jni/
hello.cpp 5 time_t now = 0; local
9 std::cout << now; local
  /system/security/keystore/
keystore_keymaster_enforcement.h 41 time_t now = time(NULL); variable
42 if (now == static_cast<time_t>(-1)) {
45 } else if (now < 0) {
54 uint64_t now_date = static_cast<uint64_t>(now) * 1000 + 999;
59 time_t now = time(NULL); variable
60 if (now == static_cast<time_t>(-1)) {
63 } else if (now < 0) {
71 uint64_t now_date = static_cast<uint64_t>(now) * 1000;
  /external/jmdns/src/javax/jmdns/impl/
DNSListener.java 22 * @param now
27 void updateRecord(DNSCache dnsCache, long now, DNSEntry record);
  /frameworks/base/core/java/android/os/
ConditionVariable.java 124 long now = System.currentTimeMillis(); local
125 long end = now + timeout;
126 while (!mCondition && now < end) {
128 this.wait(end-now);
132 now = System.currentTimeMillis();
  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
MidiBtleTimeTracker.java 40 public MidiBtleTimeTracker(long now) {
42 mBaseHostTimeNanos = now;
43 mPreviousNow = now;
49 * @param now
53 public long convertTimestampToNanotime(int timestamp, long now) {
63 if ((now - mPreviousNow) > (RANGE_NANOS / 2)) {
65 long minimumTimeNanos = (now - mBaseHostTimeNanos)
78 if (timestampHostNanos > now) {
80 mBaseHostTimeNanos = now;
81 timestampHostNanos = now;
    [all...]
  /system/extras/tests/icachetest/
icache_main.c 11 struct timeval now, tm; local
19 gettimeofday(&now, 0);
22 t = (tm.tv_sec*1000000LL+tm.tv_usec) - (now.tv_sec*1000000LL+now.tv_usec);
26 gettimeofday(&now, 0);
29 t = (tm.tv_sec*1000000LL+tm.tv_usec) - (now.tv_sec*1000000LL+now.tv_usec);
  /external/lldb/tools/debugserver/source/
DNBTimer.h 67 // Reset the time value to now
93 // Return the number of microseconds elapsed between now and the
100 struct timeval now; local
101 gettimeofday (&now, NULL);
102 uint64_t now_usec = (uint64_t)(now.tv_sec) * 1000000ull + (uint64_t)now.tv_usec;
107 m_timeval = now;
113 struct timeval now; local
114 gettimeofday (&now, NULL);
115 uint64_t now_usec = (uint64_t)(now.tv_sec) * 1000000ull + (uint64_t)now.tv_usec
124 struct timeval now; local
141 struct timespec now; local
    [all...]
  /packages/apps/Email/src/com/android/email/
StopWatch.java 54 long now = getCurrentTime() ; local
55 long elapse = now - mLastSplit;
57 mLastSplit = now;
61 long now = getCurrentTime(); local
63 + (now - mLastSplit)
64 + " (total " + (now - mStart) + ")");
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 39 private Date now = new Date(); field in class:TimestampTest
53 new Timestamp(now, null);
64 Timestamp one = new Timestamp(now, cpath);
65 Timestamp two = new Timestamp(now, cpath);
79 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath);
83 Timestamp t = new Timestamp(now, cpath);
84 assertEquals(now, t.getTimestamp());
85 assertNotSame(now, t.getTimestamp());
92 new Timestamp(now, cpath).toString();
  /external/lldb/test/expression_command/timeout/
wait-a-while.c 22 struct timeval now; local
23 gettimeofday(&now, NULL);
24 interval = target - now.tv_sec * 1000000 + now.tv_usec;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.hires/
now.pass.cpp 14 // static time_point now();
21 C::time_point t1 = C::now();

Completed in 1329 milliseconds

1 2 3 4 5 6 7 8 91011>>