Searched refs:now (Results 151 - 175 of 659) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dpmksa_cache_auth.c94 struct os_time now; local
96 os_get_time(&now);
97 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
112 struct os_time now; local
117 os_get_time(&now);
118 sec = pmksa->pmksa->expiration - now.sec;
244 struct os_time now; local
256 os_get_time(&now);
257 entry->expiration = now.sec;
/external/chromium/build/mac/
H A Dstrip_save_dsym296 now = time.time()
297 os.utime(macho, (now, now))
298 os.utime(dsym, (now, now))
/external/dropbear/
H A Dprogressmeter.c112 time_t now; local
124 now = time(NULL);
128 elapsed = now - last_update;
130 elapsed = now - start;
216 last_update = now;
/external/e2fsprogs/debugfs/
H A Dlsdel.c86 time_t now; local
101 now = current_fs->now ? current_fs->now : time(0);
135 (secs && ((unsigned) abs(now - secs) > inode.i_dtime)))
/external/ipsec-tools/src/racoon/
H A Dschedule.c83 time_t now, delta; local
86 now = current_time();
94 if (now < p->xtime) {
114 now = current_time();
116 delta = p->xtime - now;
/external/openssh/
H A Dprogressmeter.c122 time_t now; local
134 now = time(NULL);
138 elapsed = now - last_update;
140 elapsed = now - start;
226 last_update = now;
/external/qemu/distrib/sdl-1.2.15/src/timer/
H A DSDL_timer.c106 Uint32 now, ms; local
112 now = SDL_GetTicks();
117 if ( (int)(now - t->last_alarm) > (int)ms ) {
120 if ( (now - t->last_alarm) < t->interval ) {
123 t->last_alarm = now;
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius_client.c323 os_time_t now)
359 entry->next_try = now + entry->next_wait;
377 struct os_time now; local
387 os_get_time(&now);
392 if (now.sec >= entry->next_try &&
393 radius_client_retransmit(radius, entry, now.sec)) {
422 if (first < now.sec)
423 first = now.sec;
424 eloop_register_timeout(first - now.sec, 0,
429 (long int) (first - now
321 radius_client_retransmit(struct radius_client_data *radius, struct radius_msg_list *entry, os_time_t now) argument
485 struct os_time now; local
697 struct os_time now; local
[all...]
/external/wpa_supplicant_8/src/radius/
H A Dradius_client.c323 os_time_t now)
359 entry->next_try = now + entry->next_wait;
377 struct os_time now; local
387 os_get_time(&now);
392 if (now.sec >= entry->next_try &&
393 radius_client_retransmit(radius, entry, now.sec)) {
422 if (first < now.sec)
423 first = now.sec;
424 eloop_register_timeout(first - now.sec, 0,
429 (long int) (first - now
321 radius_client_retransmit(struct radius_client_data *radius, struct radius_msg_list *entry, os_time_t now) argument
485 struct os_time now; local
697 struct os_time now; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius_client.c323 os_time_t now)
359 entry->next_try = now + entry->next_wait;
377 struct os_time now; local
387 os_get_time(&now);
392 if (now.sec >= entry->next_try &&
393 radius_client_retransmit(radius, entry, now.sec)) {
422 if (first < now.sec)
423 first = now.sec;
424 eloop_register_timeout(first - now.sec, 0,
429 (long int) (first - now
321 radius_client_retransmit(struct radius_client_data *radius, struct radius_msg_list *entry, os_time_t now) argument
485 struct os_time now; local
697 struct os_time now; local
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dport.cc62 uint32 now) {
70 return pings_since_last_response[maximum_failures - 1] + rtt_estimate < now;
77 uint32 now) {
82 return pings_since_last_response[0] + maximum_time < now;
363 // (if one exists) should now be readable.
661 void Connection::UpdateState(uint32 now) { argument
672 pings << ", rtt=" << rtt << ", now=" << now; local
680 (last_ping_received_ + CONNECTION_READ_TIMEOUT <= now)) {
682 << now
58 TooManyFailures( const std::vector<uint32>& pings_since_last_response, uint32 maximum_failures, uint32 rtt_estimate, uint32 now) argument
74 TooLongWithoutResponse( const std::vector<uint32>& pings_since_last_response, uint32 maximum_time, uint32 now) argument
728 Ping(uint32 now) argument
[all...]
/external/chromium/base/
H A Dtime_win_unittest.cc51 TimeTicks now = TimeTicks::Now(); local
52 int64 milliseconds = (now - last).InMilliseconds();
57 last = now;
H A Dtimer.h150 // to this now-defunct task.
178 // By now the delayed_task_ in the Timer does not point to us anymore.
239 // then we have nothing more to do now.
253 const TimeTicks now = TimeTicks::Now(); local
254 if (now < trigger_time_) {
255 DelayFor(trigger_time_ - now);
/external/chromium/net/url_request/
H A Durl_request_throttler_entry.cc133 base::TimeTicks now = GetTimeNow(); local
139 std::max(std::max(now, earliest_time),
163 return (recommended_sending_time - now).InMillisecondsRoundedUp();
172 // return "now" so that retries are not delayed.
/external/guava/guava/src/com/google/common/base/
H A DSuppliers.java169 long now = Platform.systemNanoTime();
170 if (nanos == 0 || now - nanos >= 0) {
175 nanos = now + durationNanos;
/external/jmdns/src/javax/jmdns/impl/tasks/
H A DDNSTask.java137 * @param now
141 public DNSOutgoing addAnswer(DNSOutgoing out, DNSRecord rec, long now) throws IOException { argument
144 newOut.addAnswer(rec, now);
156 newOut.addAnswer(rec, now);
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A DProber.java61 long now = System.currentTimeMillis();
62 if (now - this.getDns().getLastThrottleIncrement() < DNSConstants.PROBE_THROTTLE_COUNT_INTERVAL) {
67 this.getDns().setLastThrottleIncrement(now);
/external/qemu/telephony/
H A Dtest2.c29 SysTime now = sys_time_ms(); local
32 printf( "tick %d/%d a %.2fs\n", counter, MAX_COUNTER, now/1000. );
34 sys_timer_set( timer, now + DELAY, timer_func, timer );
/external/webkit/Source/WebCore/platform/graphics/android/utils/
H A DLinearAllocator.cpp59 double now = currentTimeMS();
60 if (now - s_lastLogged > 5) {
61 s_lastLogged = now;
/external/webkit/Tools/WebKitTestRunner/win/
H A DTestControllerWin.cpp148 DWORD now = ::GetTickCount(); local
149 if (now > end)
154 DWORD result = ::MsgWaitForMultipleObjectsEx(objectCount, objects, end - now, QS_ALLINPUT, MWMO_INPUTAVAILABLE);
/external/wpa_supplicant_8/hostapd/
H A Ddump_state.c69 time_t now; local
91 time(&now);
92 fprintf(f, "hostapd state dump - %s", ctime(&now));
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_database_unittest.cc495 const Time now = Time::Now(); local
502 &full_hashes, now));
509 &full_hashes, now));
514 &full_hashes, now));
519 &full_hashes, now));
524 &full_hashes, now));
529 &full_hashes, now));
534 &full_hashes, now));
539 &full_hashes, now));
545 &full_hashes, now));
777 const Time now = Time::Now(); local
1396 const Time now = Time::Now(); local
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dlogin_database_unittest.cc210 base::Time now = base::Time::Now(); local
215 // Create one for now and +/- 1 day.
216 EXPECT_TRUE(AddTimestampedLogin(db.get(), "2", "foo2", now - one_day));
217 EXPECT_TRUE(AddTimestampedLogin(db.get(), "3", "foo3", now));
218 EXPECT_TRUE(AddTimestampedLogin(db.get(), "4", "foo4", now + one_day));
226 EXPECT_TRUE(db->GetLoginsCreatedBetween(now, base::Time(), &result));
231 db->RemoveLoginsCreatedBetween(now, base::Time());
/external/chromium/chrome/browser/policy/
H A Dcloud_policy_controller.cc304 base::Time now(base::Time::NowFromSystemTime());
308 last_refresh = now;
324 refresh_at = now;
350 refresh_at = now + base::TimeDelta::FromMilliseconds(
358 refresh_at = now + base::TimeDelta::FromMilliseconds(
369 int64 delay = std::max<int64>((refresh_at - now).InMilliseconds(), 0);
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.cc129 __time32_t now = _time32(0); local
131 time_t now = time(0); local
134 if (now > next_allowed_auth_attempt_time_) {
135 next_allowed_auth_attempt_time_ = now + 1;
138 if (now - next_allowed_auth_attempt_time_ > 2 * 60) {
147 next_allowed_auth_attempt_time_ = now + delay_;

Completed in 6269 milliseconds

1234567891011>>