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

1 2 3

  /external/chromium/chrome/browser/instant/
promo_counter.h 38 bool ShouldShow(base::Time current_time);
46 void Init(base::Time current_time);
49 void MaxSessionsEncountered(base::Time current_time);
52 void MaxTimeLapsed(base::Time current_time);
promo_counter.cc 47 bool PromoCounter::ShouldShow(base::Time current_time) {
50 Init(current_time);
53 if (show_ && (current_time - initial_show_).InDays() >= max_days_)
54 MaxTimeLapsed(current_time);
69 void PromoCounter::Init(base::Time current_time) {
85 if (initial_show_int == 0 || initial_show_ > current_time) {
92 MaxSessionsEncountered(current_time);
99 void PromoCounter::MaxSessionsEncountered(base::Time current_time) {
102 (current_time - initial_show_).InHours(), 1,
108 void PromoCounter::MaxTimeLapsed(base::Time current_time) {
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser_ls.h 23 const base::Time& current_time,
ftp_directory_listing_parser_netware.h 24 const base::Time& current_time,
ftp_directory_listing_parser.cc 42 const base::Time& current_time,
51 if (ParseFtpDirectoryListingLs(lines, current_time, entries)) {
69 if (ParseFtpDirectoryListingNetware(lines, current_time, entries)) {
81 const base::Time& current_time,
97 current_time,
116 const base::Time& current_time,
119 int rv = DecodeAndParse(text, current_time, entries, &server_type);
ftp_directory_listing_parser.h 39 const base::Time& current_time,
ftp_directory_listing_parser_ls.cc 71 const base::Time& current_time,
94 current_time,
108 current_time,
124 const base::Time& current_time,
158 current_time,
ftp_util.h 38 // on |current_time|), or is a year (and then we don't know the time).
42 const base::Time& current_time,
ftp_directory_listing_parser_netware.cc 40 const base::Time& current_time,
82 current_time, &entry.last_modified)) {
  /external/chromium/third_party/libjingle/source/talk/base/
ratetracker.cc 48 uint32 current_time = Time(); local
50 int delta = talk_base::TimeDiff(current_time, last_units_second_time_);
60 last_units_second_time_ = current_time - fraction_time;
65 last_units_second_time_ = current_time;
  /external/chromium-trace/trace-viewer/
run_dev_server.py 21 current_time = time.time()
22 if self.server.next_deps_check < current_time:
24 self.server.next_deps_check = current_time + DEPS_CHECK_DELAY
  /external/chromium/chrome/browser/net/
load_timing_observer_unittest.cc 32 base::TimeTicks current_time; member in namespace:__anon4231
38 observer.OnAddEntry(type, current_time, source, NetLog::PHASE_BEGIN, params);
45 observer.OnAddEntry(type, current_time, source, NetLog::PHASE_END, params);
239 current_time += TimeDelta::FromSeconds(1);
250 current_time += TimeDelta::FromSeconds(1);
255 current_time += TimeDelta::FromSeconds(2);
257 current_time += TimeDelta::FromSeconds(3);
269 current_time += TimeDelta::FromSeconds(1);
277 current_time += TimeDelta::FromSeconds(2);
280 current_time += TimeDelta::FromSeconds(3)
    [all...]
  /external/chromium/net/base/
cert_verifier_unittest.cc 42 base::Time current_time = base::Time::Now(); local
43 time_service->set_current_time(current_time);
80 base::Time current_time = base::Time::Now(); local
81 time_service->set_current_time(current_time);
117 base::Time current_time = base::Time::Now(); local
118 time_service->set_current_time(current_time);
154 current_time += base::TimeDelta::FromMinutes(60);
155 time_service->set_current_time(current_time);
171 base::Time current_time = base::Time::Now(); local
172 time_service->set_current_time(current_time);
    [all...]
transport_security_state_unittest.cc 146 const base::Time current_time(base::Time::Now());
147 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000);
159 const base::Time current_time(base::Time::Now());
160 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000);
172 const base::Time current_time(base::Time::Now());
173 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000);
185 const base::Time current_time(base::Time::Now());
186 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000);
218 const base::Time current_time(base::Time::Now());
219 const base::Time expiry = current_time + base::TimeDelta::FromSeconds(1000)
    [all...]
dnsrr_resolver.h 30 // |current_time|.
31 bool HasExpired(base::Time current_time) const;
cert_verifier.cc 83 bool CachedCertVerifyResult::HasExpired(const base::Time current_time) const {
84 return current_time >= expiry;
396 const base::Time current_time(time_service_->Now());
402 cached_result.expiry = current_time + base::TimeDelta::FromSeconds(ttl);
413 if (cur->second.HasExpired(current_time))
  /external/qemu/hw/
i8254.c 62 static void pit_irq_timer_update(PITChannelState *s, int64_t current_time);
89 static int pit_get_out1(PITChannelState *s, int64_t current_time)
94 d = muldiv64(current_time - s->count_load_time, PIT_FREQ, get_ticks_per_sec());
120 int pit_get_out(PITState *pit, int channel, int64_t current_time)
123 return pit_get_out1(s, current_time);
128 int64_t current_time)
133 d = muldiv64(current_time - s->count_load_time, PIT_FREQ, get_ticks_per_sec());
172 if (next_time <= current_time)
173 next_time = current_time + 1;
363 static void pit_irq_timer_update(PITChannelState *s, int64_t current_time)
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
chrome_system_resources_unittest.cc 76 // Make sure current_time() doesn't crash or leak.
78 invalidation::Time current_time = local
79 chrome_system_resources_.current_time();
80 VLOG(1) << "current_time returned: " << current_time.ToInternalValue();
chrome_system_resources.h 33 virtual invalidation::Time current_time();
  /external/e2fsprogs/ext2ed/
disk.c 144 time_t current_time; local
152 current_time=time (NULL);
155 fprintf (fp,"Time: %s\nDevice: %s\n",ctime ((time_t *) &current_time),device_name);
  /external/chromium/base/
pr_time_unittest.cc 49 time_t current_time = 0; local
50 time(&current_time);
56 localtime_s(&local_time, &current_time);
59 localtime_r(&current_time, &local_time);
63 PRTime current_time64 = static_cast<PRTime>(current_time) * PR_USEC_PER_SEC;
  /external/ipsec-tools/src/racoon/
schedule.c 72 static time_t current_time __P((void));
86 now = current_time();
114 now = current_time();
147 new->xtime = current_time() + tick;
180 current_time() function
  /external/chromium/net/test/
test_server_posix.cc 77 base::Time current_time = base::Time::Now(); local
78 base::TimeDelta elapsed_time_cycle = current_time - previous_time;
81 previous_time = current_time;
  /external/chromium/third_party/libjingle/source/talk/examples/call/
presenceouttask.cc 136 struct tm* current_time = gmtime(&current_time_seconds); local
138 strftime(output, ARRAY_SIZE(output), "%Y%m%dT%H:%M:%S", current_time);
  /hardware/invensense/libsensors_iio/software/core/mllite/
data_builder.c 940 inv_time_t current_time = 0; local
    [all...]

Completed in 407 milliseconds

1 2 3