HomeSort by relevance Sort by last modified time
    Searched full:stime (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AnimationTime.java 29 private static volatile long sTime;
33 sTime = SystemClock.uptimeMillis();
38 return sTime;
42 sTime = SystemClock.uptimeMillis();
43 return sTime;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERGeneralizedTime.java 144 String stime = Strings.fromByteArray(time); local
149 if (stime.charAt(stime.length() - 1) == 'Z')
151 return stime.substring(0, stime.length() - 1) + "GMT+00:00";
155 int signPos = stime.length() - 5;
156 char sign = stime.charAt(signPos);
159 return stime.substring(0, signPos)
161 + stime.substring(signPos, signPos + 3)
163 + stime.substring(signPos + 3)
223 String stime = Strings.fromByteArray(time); local
    [all...]
DERUTCTime.java 171 String stime = Strings.fromByteArray(time); local
176 if (stime.indexOf('-') < 0 && stime.indexOf('+') < 0)
178 if (stime.length() == 11)
180 return stime.substring(0, 10) + "00GMT+00:00";
184 return stime.substring(0, 12) + "GMT+00:00";
189 int index = stime.indexOf('-');
192 index = stime.indexOf('+');
194 String d = stime;
196 if (index == stime.length() - 3
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/timer/wince/
SDL_systimer.c 49 SYSTEMTIME stime; local
51 GetSystemTime(&stime);
52 SystemTimeToFileTime(&stime,&ftime.ftime);
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/inc/
OMX_JpegDec_Utils.h 161 struct timeval sTime; \
165 gettimeofday(&sTime, &sTimeZone); \
166 ts.tv_sec = sTime.tv_sec; \
188 struct timeval sTime; \
192 gettimeofday(&sTime, &sTimeZone); \
193 ts.tv_sec = sTime.tv_sec; \
215 struct timeval sTime; \
219 gettimeofday(&sTime, &sTimeZone); \
220 ts.tv_sec = sTime.tv_sec; \
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 179 long stime = System.currentTimeMillis(); local
189 assertTrue("Failed to sleep long enough", (ftime - stime) >= 500);
190 assertTrue("Failed to wake up early enough", (ftime - stime) <= 1500);
226 long stime = System.currentTimeMillis(); local
236 assertTrue("Failed to sleep long enough", (ftime - stime) >= 500);
237 assertTrue("Failed to wake up early enough", (ftime - stime) <= 1500);
  /system/extras/cpustats/
cpustats.c 44 long unsigned utime, ntime, stime, itime, iowtime, irqtime, sirqtime; member in struct:cpu_info
241 &new_total_cpu.utime, &new_total_cpu.ntime, &new_total_cpu.stime, &new_total_cpu.itime,
251 fscanf(file, scanline, &new_cpus[i].utime, &new_cpus[i].ntime, &new_cpus[i].stime,
285 return (cpu->utime + cpu->ntime + cpu->stime + cpu->itime + cpu->iowtime + cpu->irqtime +
320 new_cpu->stime - old_cpu->stime,
333 new_cpu->stime - old_cpu->stime,
  /system/core/toolbox/
ps.c 45 unsigned utime, stime; local
101 stime = atoi(nexttok(&ptr));
104 nexttok(&ptr); // stime
175 printf(" (u:%d, s:%d)", utime, stime);
top.c 45 long unsigned utime, ntime, stime, itime; member in struct:cpu_info
63 long unsigned stime; member in struct:proc_info
242 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &new_cpu.utime, &new_cpu.ntime, &new_cpu.stime,
347 &proc->state, &proc->utime, &proc->stime, &proc->vss, &proc->rss, &proc->prs);
422 new_procs[i]->delta_stime = new_procs[i]->stime - old_proc->stime;
431 total_delta_time = (new_cpu.utime + new_cpu.ntime + new_cpu.stime + new_cpu.itime
433 - (old_cpu.utime + old_cpu.ntime + old_cpu.stime + old_cpu.itime
441 ((new_cpu.stime ) - (old_cpu.stime)) * 100 / total_delta_time
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSessionTest.java 67 long sTime = s.server.getCreationTime() / 1000;
68 assertTrue(sTime + " >= " + t0, sTime >= t0);
69 assertTrue(sTime + " <= " + t1, sTime <= t1);
  /frameworks/base/core/java/com/android/internal/os/
ProcessStats.java 55 PROC_SPACE_TERM|PROC_OUT_LONG // 14: stime
83 PROC_SPACE_TERM|PROC_OUT_LONG, // 14: stime
374 final long stime = procStats[PROCESS_STAT_STIME];
376 if (utime == st.base_utime && stime == st.base_stime) {
401 + " stime=" + stime + "-" + st.base_stime
408 st.rel_stime = (int)(stime - st.base_stime);
410 st.base_stime = stime;
472 + " utime=" + st.base_utime + " stime=" + st.base_stime
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/internal/kerberos/v5/
KerberosErrorMessageTest.java 39 assertEquals("stime", new Date(0), message.getStime());
115 // stime [4] KerberosTime,
  /packages/experimental/procstatlog/
procstatreport.py 181 stime = sum([int(next[x]) - int(last[x]) for x in [2, 5, 6]])
184 all = stime + utime + idle
185 total_sys += stime
188 sys_jiffies[when] = (stime, all)
189 sys_user_jiffies[when] = (stime + utime, all)
322 stime = int(next[14]) - int(last[14])
324 process_sys.setdefault(pid, {})[when] = (stime, all)
325 process_sys_user.setdefault(pid, {})[when] = (stime + utime, all)
  /external/openssh/
README.privsep 53 UID PID PPID C STIME TTY TIME COMMAND
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 822 long stime = 0, ftime = 0; local
824 stime = System.currentTimeMillis();
830 assertTrue("Failed to sleep long enough", (ftime - stime) >= 800);
840 long stime = 0, ftime = 0; local
842 stime = System.currentTimeMillis();
848 long result = ftime - stime;
  /dalvik/vm/
Misc.cpp 646 unsigned long flags, minflt, cminflt, majflt, cmajflt, utime, stime;
659 &flags, &minflt, &cminflt, &majflt, &cmajflt, &utime, &stime,
713 * Grab utime/stime.
724 pData->stime = strtoul(cp+1, &endp, 10);
726 ALOGI("Warning: strtoul failed on stime ('%.30s...')", cp);
Ddm.cpp 348 * (4b) stime
404 set4BE(buf+13, procStatData.stime);
  /external/elfutils/backends/
linux-core-note.c 128 TIMEVAL_FIELD (stime),
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
verilog.php 80 '$signed', '$stime', '$stop',
  /external/tcpdump/
FILES 227 stime.awk
README 185 stime.awk
219 awk -f stime.awk tracedata | xgraph
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
taskstats.h 158 __u64 ac_stimescaled; /* stime scaled on frequency etc */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
taskstats.h 158 __u64 ac_stimescaled; /* stime scaled on frequency etc */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
taskstats.h 158 __u64 ac_stimescaled; /* stime scaled on frequency etc */
  /external/strace/
strace.c 1123 tcp->stime.tv_sec = 0;
1124 tcp->stime.tv_usec = 0;
2219 struct timeval stime; local
    [all...]

Completed in 1306 milliseconds

1 2 3 4