Searched refs:now (Results 226 - 250 of 659) sorted by relevance

1234567891011>>

/external/openssh/
H A Dssh-keyscan.c520 struct timeval seltime, now; local
525 gettimeofday(&now, NULL);
528 if (c && (c->c_tv.tv_sec > now.tv_sec ||
529 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
531 seltime.tv_sec -= now.tv_sec;
532 seltime.tv_usec -= now.tv_usec;
560 while (c && (c->c_tv.tv_sec < now.tv_sec ||
561 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now
[all...]
/external/chromium/chrome/browser/webdata/
H A Dlogins_table_unittest.cc210 Time now = Time::Now(); local
215 // Create one for now and +/- 1 day.
216 EXPECT_TRUE(AddTimestampedLogin(&db, "2", "foo2", now - one_day));
217 EXPECT_TRUE(AddTimestampedLogin(&db, "3", "foo3", now));
218 EXPECT_TRUE(AddTimestampedLogin(&db, "4", "foo4", now + one_day));
226 db.GetLoginsTable()->RemoveLoginsCreatedBetween(now, Time());
/external/icu4c/test/cintltst/
H A Dcdtdptst.c197 UChar *pattern=NULL, *now=NULL, *then=NULL; local
209 now=myDateFormat(format, date1);
210 log_verbose("%s\n", austrdup(now) );
212 date2 = udat_parse(format, now, u_strlen(now), &pos, &status);
/external/libffi/src/powerpc/
H A Dlinux64_closure.S83 # now load up the pointer to the result storage
86 # now load up the pointer to the parameter save area
90 # now load up the pointer to the saved fpr registers */
97 # now r3 contains the return type
104 sldi %r3, %r3, 4 # now multiply return type by 16
H A Dppc_closure.S73 # now load up the pointer to the result storage
76 # now load up the pointer to the saved gpr registers
79 # now load up the pointer to the saved fpr registers */
82 # now load up the pointer to the outgoing parameter
90 # now r3 contains the return type
98 slwi %r3,%r3,4 # now multiply return type by 16
/external/llvm/lib/Support/
H A DTimer.cpp131 sys::TimeValue now(0,0), user(0,0), sys(0,0);
135 sys::Process::GetTimeUsage(now, user, sys);
137 sys::Process::GetTimeUsage(now, user, sys);
141 Result.WallTime = now.seconds() + now.microseconds() / 1000000.0;
/external/qemu/android/utils/
H A Dfilelock.c250 /* now attempt to link the temp file to the lock file */
284 time_t now;
290 CHECKED(rc, time( &now));
291 st.st_mtime = now - 120;
303 now = st.st_atime;
318 stale = (now >= st.st_mtime + 60);
/external/wpa_supplicant_6/wpa_supplicant/src/radius/
H A Dradius_client.c165 os_time_t now)
199 entry->next_try = now + entry->next_wait;
217 struct os_time now; local
227 os_get_time(&now);
232 if (now.sec >= entry->next_try &&
233 radius_client_retransmit(radius, entry, now.sec)) {
262 if (first < now.sec)
263 first = now.sec;
264 eloop_register_timeout(first - now.sec, 0,
269 (long int) (first - now
163 radius_client_retransmit(struct radius_client_data *radius, struct radius_msg_list *entry, os_time_t now) argument
325 struct os_time now; local
513 struct os_time now; local
[all...]
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius_das.c161 struct os_time now; local
198 os_get_time(&now);
203 if (abs(now.sec - timestamp) > das->time_window) {
207 timestamp, (unsigned int) now.sec,
249 now.sec)) {
/external/wpa_supplicant_8/src/radius/
H A Dradius_das.c161 struct os_time now; local
198 os_get_time(&now);
203 if (abs(now.sec - timestamp) > das->time_window) {
207 timestamp, (unsigned int) now.sec,
249 now.sec)) {
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius_das.c161 struct os_time now; local
198 os_get_time(&now);
203 if (abs(now.sec - timestamp) > das->time_window) {
207 timestamp, (unsigned int) now.sec,
249 now.sec)) {
/external/chromium/third_party/libevent/
H A Devent.c675 struct timeval now, res; local
689 gettime(ev->ev_base, &now);
690 evutil_timersub(&ev->ev_timeout, &now, &res);
692 evutil_gettimeofday(&now, NULL);
693 evutil_timeradd(&now, &res, tv);
739 struct timeval now; local
764 gettime(base, &now);
765 evutil_timeradd(&now, tv, &ev->ev_timeout);
835 struct timeval now; local
845 if (gettime(base, &now)
906 struct timeval now; local
[all...]
/external/chromium/chrome/browser/history/
H A Dhistory_unittest.cc302 Time now = Time::Now(); local
304 Time month_ago = now - TimeDelta::FromDays(30);
316 // Create one for now and +/- 1 day.
317 EXPECT_NE(0, AddDownload(DownloadItem::COMPLETE, now - one_day));
318 EXPECT_NE(0, AddDownload(DownloadItem::COMPLETE, now));
319 EXPECT_NE(0, AddDownload(DownloadItem::COMPLETE, now + one_day));
333 db_->RemoveDownloadsBetween(now, Time());
339 db_->RemoveDownloadsBetween(now - TimeDelta::FromDays(60), Time());
414 Time now = Time::Now(); local
423 history->AddPage(test_urls[0], now, NUL
[all...]
H A Dtext_database_manager.h45 // Tracks a set of changes (only deletes need to be supported now) to the
197 bool Expired(base::TimeTicks now) const;
245 // Given "now," this will expire old things from the recent_changes_ list.
248 void FlushOldChangesForTime(base::TimeTicks now);
/external/chromium/net/socket/
H A Dtransport_client_socket_pool.cc268 base::TimeTicks now = base::TimeTicks::Now(); local
269 base::TimeDelta total_duration = now - start_time_;
277 base::TimeDelta connect_duration = now - connect_start_time_;
364 base::TimeTicks now = base::TimeTicks::Now(); local
365 base::TimeDelta total_duration = now - start_time_;
373 base::TimeDelta connect_duration = now - fallback_connect_start_time_;
/external/mdnsresponder/mDNSPosix/
H A DIdentify.c103 // For now, the simplest way to allow that is to pretend it was received via multicast so that mDNSCore doesn't reject the packet
132 hostaddr.type = mDNSAddrType_IPv4; // Prefer v4 target to v6 target, for now
141 if (!hostaddr.type) // Prefer v4 target to v6 target, for now
168 // Right now the mDNSCore targeted-query code is incomplete --
170 // For now, we'll just filter responses here so we don't get confused by responses from someone else
189 struct timeval now, remain = end; local
193 gettimeofday(&now, NULL);
194 if (remain.tv_usec < now.tv_usec) { remain.tv_usec += 1000000; remain.tv_sec--; }
195 if (remain.tv_sec < now.tv_sec)
200 remain.tv_usec -= now
[all...]
/external/qemu/audio/
H A Dwavaudio.c64 int64_t now = qemu_get_clock (vm_clock); local
65 int64_t ticks = now - wav->old_ticks;
76 wav->old_ticks = now;
352 int64_t now = qemu_get_clock (vm_clock); local
353 int64_t ticks = now - wav->old_ticks;
368 wav->old_ticks = now;
/external/dnsmasq/src/
H A Dcache.c246 static int is_expired(time_t now, struct crec *crecp) argument
251 if (difftime(now, crecp->ttd) < 0)
257 static int cache_scan_free(char *name, struct all_addr *addr, time_t now, unsigned short flags) argument
277 if (is_expired(now, crecp) || is_outdated_cname_pointer(crecp))
311 if (is_expired(now, crecp))
360 time_t now, unsigned long ttl, unsigned short flags)
372 /* if previous insertion failed give up now. */
379 if (!cache_scan_free(name, addr, now, flags))
394 chains for expired entries do that now. If we already tried that
411 free_avail = 1; /* Must be free space now
359 cache_insert(char *name, struct all_addr *addr, time_t now, unsigned long ttl, unsigned short flags) argument
412 cache_scan_free(cache_get_name(new), &new->addr.addr, now, new->flags); local
495 cache_find_by_name(struct crec *crecp, char *name, time_t now, unsigned short prot) argument
579 cache_find_by_addr(struct crec *crecp, struct all_addr *addr, time_t now, unsigned short prot) argument
1125 dump_cache(time_t now) argument
[all...]
/external/openssl/apps/
H A Dapps.c424 /* now look for the end of this */
2832 FILETIME now; local
2850 GetProcessTimes(proc,&junk,&junk,&junk,&now);
2864 SystemTimeToFileTime(&systime,&now);
2869 tmstart.u.LowPart = now.dwLowDateTime;
2870 tmstart.u.HighPart = now.dwHighDateTime;
2875 tmstop.u.LowPart = now.dwLowDateTime;
2876 tmstop.u.HighPart = now.dwHighDateTime;
2914 struct timespec now; local
2917 unsigned long now; local
2949 clock_t now; local
2980 clock_t now = times(&rus); local
3003 struct timeval now; local
[all...]
/external/chromium/chrome/browser/chromeos/status/
H A Dclock_menu_button.cc55 base::Time now = base::Time::Now(); local
57 now.LocalExplode(&exploded);
60 // 60 seconds from now.
/external/chromium/chrome/browser/net/
H A Dpredictor.cc175 base::TimeTicks now = base::TimeTicks::Now(); local
202 if ((now - last_omnibox_preconnect_).InSeconds() <
205 last_omnibox_preconnect_ = now;
223 if (kMinPreresolveSeconds > (now - last_omnibox_preresolve_).InSeconds())
226 last_omnibox_preresolve_ = now;
605 IncrementalTrimReferrers(true); // Do everything now.
661 base::TimeTicks now = base::TimeTicks::Now();
662 if (now < next_trim_time_)
664 next_trim_time_ = now + kDurationBetweenTrimmings;
/external/chromium/chrome/common/
H A Dmulti_process_lock_unittest.cc46 base::Time now = base::Time::NowFromSystemTime(); local
48 now.ToDoubleT(), base::RandDouble());
/external/freetype/
H A DAndroid.mk1 # this is now the default FreeType build for Android
/external/grub/docs/
H A Dmenu.lst39 pause Insert the diskette now!!
/external/jmdns/src/javax/jmdns/impl/tasks/
H A DResponder.java120 long now = System.currentTimeMillis();
122 if (knownAnswer.isStale(now)) {

Completed in 6656 milliseconds

1234567891011>>