HomeSort by relevance Sort by last modified time
    Searched full:now (Results 26 - 50 of 6977) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/net/http/
Timer.java 35 long now = SystemClock.uptimeMillis(); local
37 HttpLog.v(message + " " + (now - mLast) + " total " + (now - mStart));
39 mLast = now;
  /external/chromium/net/base/
ssl_config_service_win.cc 48 SSLConfigServiceWin::SSLConfigServiceWin(TimeTicks now) : ever_updated_(false) {
49 UpdateConfig(now);
52 void SSLConfigServiceWin::GetSSLConfigAt(SSLConfig* config, TimeTicks now) {
54 now - config_time_ > TimeDelta::FromSeconds(kConfigUpdateInterval))
55 UpdateConfig(now);
108 void SSLConfigServiceWin::UpdateConfig(TimeTicks now) {
110 config_time_ = now;
host_cache.cc 37 base::TimeTicks now) const {
46 if (CanUseEntry(entry, now))
55 base::TimeTicks now) {
59 base::TimeTicks expiration = now +
64 // Entry didn't exist, creating one now.
71 Compact(now, ptr);
83 bool HostCache::CanUseEntry(const Entry* entry, const base::TimeTicks now) {
84 return entry->expiration > now;
87 void HostCache::Compact(base::TimeTicks now, const Entry* pinned_entry) {
91 if (entry != pinned_entry && !CanUseEntry(entry, now)) {
    [all...]
ssl_config_service_win_unittest.cc 67 TimeTicks now = TimeTicks::Now(); local
68 TimeTicks now_1 = now + TimeDelta::FromSeconds(1);
69 TimeTicks now_11 = now + TimeDelta::FromSeconds(11);
73 new net::SSLConfigServiceWin(now));
74 config_service->GetSSLConfigAt(&config, now);
ssl_config_service_win.h 25 explicit SSLConfigServiceWin(base::TimeTicks now); // Used for testing.
40 GetSSLConfigAt(config, base::TimeTicks::Now());
44 void GetSSLConfigAt(SSLConfig* config, base::TimeTicks now);
49 void UpdateConfig(base::TimeTicks now);
  /external/e2fsprogs/e2fsck/
CHANGES 19 being checked; now fixed.
22 checked. Now fixed.
36 e2fsck will now expand the /lost+found directory if it runs out of room.
38 Fixed dependency on BLOCK_SIZE in pass2. e2fsck will now handle 4k
41 e2fsck will now move bad blocks found in the inode bitmaps, block
46 e2fsck now supports the -b option, to allow a user to specify an
49 The -B option now specifies the blocksize of the filesystem. (If not
  /external/qemu/distrib/sdl-1.2.12/src/timer/mint/
SDL_systimer.c 76 Uint32 now = start; local
79 now = SDL_Atari_hz200;
82 now = *((volatile long *)_hz_200);
86 return((now*5)-start);
91 Uint32 now; local
93 now = SDL_GetTicks();
94 while ((SDL_GetTicks()-now)<ms){
  /frameworks/base/core/tests/coretests/src/android/provider/
SmsProviderTest.java 38 long now = System.currentTimeMillis(); local
46 Long.toString(now - (5 * 24 * 60 * 60 * 1000)),
47 Long.toString(now - (2 * 24 * 60 * 60 * 1000)),
48 Long.toString(now - (5 * 60 * 60 * 1000)),
49 Long.toString(now - (30 * 60 * 1000)),
50 Long.toString(now - (5 * 60 * 1000)),
51 Long.toString(now)
  /external/chromium/base/
condition_variable_posix.cc 38 struct timeval now; local
39 gettimeofday(&now, NULL);
42 abstime.tv_sec = now.tv_sec + (usecs / Time::kMicrosecondsPerSecond);
43 abstime.tv_nsec = (now.tv_usec + (usecs % Time::kMicrosecondsPerSecond)) *
47 DCHECK(abstime.tv_sec >= now.tv_sec); // Overflow paranoia
  /frameworks/base/core/tests/coretests/src/android/os/
TestHandlerThread.java 39 long now = System.currentTimeMillis(); local
40 long endTime = now + timeout;
41 while (!mDone && now < endTime) {
43 wait(endTime-now);
47 now = System.currentTimeMillis();
  /packages/wallpapers/Basic/res/raw/
grass.rs 90 float brightness, float xOffset, float now) {
100 float newAngle = (turbulencef2(bladeStruct->turbulencex, now, 4.0f) - 0.5f) * 0.5f;
178 float now = uptimeMillis() * 0.00004f;
181 int offset = drawBlade(bladeStruct, bladeBuffer, bladeColor, brightness, xOffset, now);
197 float now = time(State->isPreview);
206 if (now >= 0.0f && now < dawn) { // Draw night
209 } else if (now >= dawn && now <= morning) { // Draw sunrise
211 if (now <= half) { // Draw night->sunris
    [all...]
  /external/strace/strace/linux/sparc/
syscall.h 144 int sys_otime(); /* now use gettimeofday */
145 int sys_ostime(); /* now use settimeofday */
146 int sys_oalarm(); /* now use setitimer */
147 int sys_outime(); /* now use utimes */
148 int sys_opause(); /* now use sigpause */
149 int sys_onice(); /* now use setpriority,getpriority */
150 int sys_oftime(); /* now use gettimeofday */
152 int sys_otimes(); /* now use getrusage */
153 int sys_ossig(); /* now use sigvec, etc */
154 int sys_ovlimit(); /* now use setrlimit,getrlimit *
    [all...]
  /external/bison/lib/
timevar.c 200 get_time (now)
201 struct timevar_time_def *now;
203 now->user = 0;
204 now->sys = 0;
205 now->wall = 0;
213 now->wall = times (&tms) * ticks_to_msec;
215 now->user = tms.tms_utime * ticks_to_msec;
216 now->sys = tms.tms_stime * ticks_to_msec;
218 now->user = (tms.tms_utime + tms.tms_cutime) * ticks_to_msec;
219 now->sys = (tms.tms_stime + tms.tms_cstime) * ticks_to_msec
289 struct timevar_time_def now; local
340 struct timevar_time_def now; local
401 struct timevar_time_def now; local
423 struct timevar_time_def now; local
453 struct timevar_time_def now; local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.5.23-1.js 50 var now = "now";
53 addTestCase( now, -2208988800000 );
54 addTestCase( now, -86400000 );
55 addTestCase( now, 946684800000 );
58 // addTestCase( now, -69609600000 );
59 addTestCase( now, -2208988800000 );
60 addTestCase( now, 946684800000 );
63 // addTestCase( now, -69609600000 );
64 addTestCase( now, 0 )
    [all...]
15.9.5.23-10.js 50 var now = "now";
51 addTestCase( now, -2208988800000 );
53 addTestCase( now, -86400000 );
54 addTestCase( now, 946684800000 );
57 // addTestCase( now, -69609600000 );
58 addTestCase( now, -2208988800000 );
59 addTestCase( now, 946684800000 );
62 // addTestCase( now, -69609600000 );
63 addTestCase( now, 0 )
    [all...]
15.9.5.23-11.js 50 var now = "now";
51 addTestCase( now, -86400000 );
53 addTestCase( now, 946684800000 );
56 // addTestCase( now, -69609600000 );
57 addTestCase( now, -2208988800000 );
58 addTestCase( now, 946684800000 );
61 // addTestCase( now, -69609600000 );
62 addTestCase( now, 0 );
63 addTestCase( now, String( TIME_1900 ) )
    [all...]
  /external/bison/
NEWS 6 * GLR grammars should now use `YYRECOVERING ()' instead of `YYRECOVERING',
9 * It is now documented that any definition of YYSTYPE or YYLTYPE should
14 * The distribution terms for all Bison-generated parsers now permit
22 * Bison now allows multiple %union declarations, and concatenates
60 Destructors are now called when user code invokes YYABORT, YYACCEPT,
65 Incorrect numbers of expected conflicts are now actual errors,
72 * Bison now warns if it finds a stray `$' or `@' in an action.
78 * lalr1.cc: The token and value types are now class members.
80 was defined as a free form union. They are now class members:
99 * Bison-generated parsers now support the translation of diagnostics lik
    [all...]
  /external/e2fsprogs/tests/f_badjourblks/
expect.1 4 *** ext3 journal has been deleted - filesystem is now ext2 only ***
27 *** journal has been re-created - filesystem is now ext3 again ***
  /external/e2fsprogs/tests/f_miss_journal/
expect.1 4 *** ext3 journal has been deleted - filesystem is now ext2 only ***
25 *** journal has been re-created - filesystem is now ext3 again ***
  /external/skia/include/views/
SkOSSound.h 27 static bool TogglePause(); // returns true if we are now playing, or false if we're now paused
  /system/extras/tests/bionic/libc/common/
test_strftime_2039.c 11 time_t now = time(NULL); local
12 struct tm tm = *localtime(&now);
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java 114 long now = SystemClock.uptimeMillis() + 200;
118 mHandler.sendMessageAtTime(mHandler.obtainMessage(2), now + 1);
119 mHandler.sendMessageAtTime(mHandler.obtainMessage(3), now + 2);
120 mHandler.sendMessageAtTime(mHandler.obtainMessage(4), now + 2);
121 mHandler.sendMessageAtTime(mHandler.obtainMessage(0), now + 0);
122 mHandler.sendMessageAtTime(mHandler.obtainMessage(1), now + 0);
138 long now = SystemClock.uptimeMillis() + 200;
141 mHandler.sendMessageAtTime(mHandler.obtainMessage(3), now);
168 long now = System.currentTimeMillis(); local
169 long endTime = now + timeout
258 long now = System.currentTimeMillis(); local
    [all...]
  /development/simulator/wrapsim/
Log.c 22 time_t now; local
35 now = time(NULL);
37 ptm = localtime_r(&now, &tmBuf);
39 ptm = localtime(&now);
  /external/chromium/net/socket_stream/
socket_stream_metrics.cc 32 wait_start_time_ = base::TimeTicks::Now();
36 connect_start_time_ = base::TimeTicks::Now();
56 connect_establish_time_ = base::TimeTicks::Now();
72 base::TimeTicks closed_time = base::TimeTicks::Now();
  /external/e2fsprogs/
depfix.sed 30 # Now insert a trailing newline...

Completed in 461 milliseconds

12 3 4 5 6 7 8 91011>>