HomeSort by relevance Sort by last modified time
    Searched defs:now (Results 51 - 75 of 2052) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/v8/tools/foozzie/
v8_mock.js 45 if (property == "now") {
54 // Mock performace.now().
56 performance.now = function () { return 1.2; }
67 // Note, for now we just use noop forwarding proxies, because they already
52 })(); function
  /external/vboot_reference/firmware/2lib/
2secdata.c 55 /* Read this now to make sure crossystem has it even in rec mode. */
92 uint32_t now; local
98 if (vb2_secdata_get(ctx, param, &now) == VB2_SUCCESS && now == value)
  /external/vboot_reference/host/lib/
extract_vmlinuz.c 16 uint64_t now = 0; local
27 now += keyblock->key_block_size;
28 if (now > kpart_size)
31 preamble = (VbKernelPreambleHeader *)(kpart_data + now);
32 now += preamble->preamble_size;
33 if (now > kpart_size)
36 kblob_data = kpart_data + now;
39 if (!kblob_data || (now + kblob_size) > kpart_size)
  /external/wpa_supplicant_8/src/ap/
tkip_countermeasures.c 71 struct os_reltime now; local
92 os_get_reltime(&now);
93 if (os_reltime_expired(&now, &hapd->michael_mic_failure, 60)) {
102 hapd->michael_mic_failure = now;
  /frameworks/av/services/mediaresourcemanager/
ServiceLog.cpp 35 time_t now = time(0); local
37 strftime(buf, sizeof(buf), "%m-%d %T", localtime(&now));
  /frameworks/base/libs/hwui/renderthread/
TimeLord.cpp 34 nsecs_t now = systemTime(CLOCK_MONOTONIC); local
35 nsecs_t jitterNanos = now - mFrameTimeNanos;
38 mFrameTimeNanos = now - lastFrameOffset;
  /hardware/interfaces/confirmationui/1.0/default/
PlatformSpecifics.cpp 30 MonotonicClockTimeStamper::TimeStamp MonotonicClockTimeStamper::now() { function in class:android::hardware::confirmationui::V1_0::implementation::MonotonicClockTimeStamper
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LatencyTracker.java 51 long now = SystemClock.uptimeMillis(); local
52 return (int) (now - mStartTime);
  /system/core/liblog/
log_ratelimit.cpp 76 time_t now = time(NULL); local
77 if ((now == (time_t)-1) || ((*last + seconds) > now)) {
82 *last = now;
  /system/extras/libperfmgr/
RequestGroup.cc 45 ReqTime now = std::chrono::steady_clock::now(); local
51 it->second - now);
  /system/security/keystore/
keystore_keymaster_enforcement.h 42 time_t now = time(NULL); variable
43 if (now == static_cast<time_t>(-1)) {
46 } else if (now < 0) {
55 uint64_t now_date = static_cast<uint64_t>(now) * 1000 + 999;
60 time_t now = time(NULL); variable
61 if (now == static_cast<time_t>(-1)) {
64 } else if (now < 0) {
72 uint64_t now_date = static_cast<uint64_t>(now) * 1000;
  /system/update_engine/update_manager/
real_time_provider.cc 46 Time* now = new Time(); local
47 bool success = Time::FromLocalExploded(now_exp, now);
49 return now;
  /packages/apps/Settings/src/com/android/settings/datetime/
TimeFormatPreferenceController.java 69 final Calendar now = Calendar.getInstance(); local
70 mDummyDate.setTimeZone(now.getTimeZone());
73 mDummyDate.set(now.get(Calendar.YEAR), 11, 31, 13, 0, 0);
  /bionic/tests/
system_properties_test2.cpp 29 timespec now; local
30 clock_gettime(CLOCK_MONOTONIC, &now);
31 return static_cast<uint64_t>(now.tv_sec) * UINT64_C(1000000000) + now.tv_nsec;
  /cts/tests/security/src/android/keystore/cts/
CertificateUtils.java 39 long now = System.currentTimeMillis(); local
40 Date start = new Date(now - millisPerDay);
41 Date end = new Date(now + millisPerDay);
  /device/generic/goldfish/wifi/ipv6proxy/
log.cpp 31 time_t now = ts.tv_sec; local
32 if (localtime_r(&now, &localTime)) {
  /external/apache-http/src/org/apache/http/protocol/
HttpDateGenerator.java 77 long now = System.currentTimeMillis(); local
78 if (now - this.dateAsLong > 1000) {
80 this.dateAsText = this.dateformat.format(new Date(now));
81 this.dateAsLong = now;
  /external/blktrace/btt/
plat.c 69 double now = TO_SEC(ts); local
76 pp->first_ts = pp->last_ts = now;
79 } else if ((now - pp->first_ts) >= plat_freq) {
85 pp->first_ts = pp->last_ts = now;
89 pp->last_ts = now;
  /external/curl/lib/
timeval.c 34 struct curltime now; local
38 now.tv_sec = milliseconds / 1000;
39 now.tv_usec = (milliseconds % 1000) * 1000;
42 now.tv_sec = (time_t) (milliseconds / 1000);
43 now.tv_usec = (unsigned int) (milliseconds % 1000) * 1000;
46 return now;
60 struct timeval now; local
74 (void)gettimeofday(&now, NULL);
75 cnow.tv_sec = now.tv_sec;
76 cnow.tv_usec = (unsigned int)now.tv_usec
127 struct timeval now; local
142 struct curltime now; local
    [all...]
  /external/curl/tests/libtest/
testtrace.c 93 struct tm *now; local
110 now = localtime(&secs); /* not thread safe but we don't care */
112 now->tm_hour, now->tm_min, now->tm_sec, (long)tv.tv_usec);
  /external/curl/tests/unit/
unit1399.c 83 struct curltime now = Curl_now(); variable in typeref:struct:curltime
91 data.progress.start.tv_sec = now.tv_sec - 2;
92 data.progress.start.tv_usec = now.tv_usec;
93 fake_t_startsingle_time(&data, now, -2);
103 /* now simulate the redirect */
105 fake_t_startsingle_time(&data, now, -1);
  /external/guice/core/src/com/google/inject/internal/util/
Stopwatch.java 35 long now = System.currentTimeMillis(); local
37 return now - start;
39 start = now;
  /external/iptables/iptables/
ip6tables-save.c 74 time_t now = time(NULL); local
77 IPTABLES_VERSION, ctime(&now));
110 now = time(NULL);
112 printf("# Completed on %s", ctime(&now));
iptables-save.c 72 time_t now = time(NULL); local
75 IPTABLES_VERSION, ctime(&now));
108 now = time(NULL);
110 printf("# Completed on %s", ctime(&now));
xtables-save.c 55 time_t now = time(NULL); local
58 IPTABLES_VERSION, ctime(&now));
66 now = time(NULL);
68 printf("# Completed on %s", ctime(&now));

Completed in 676 milliseconds

1 23 4 5 6 7 8 91011>>