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

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/SetStamp/
SetStamp.c 84 struct tm stime; local
133 &stime.tm_year,
134 &stime.tm_mon,
135 &stime.tm_mday,
136 &stime.tm_hour,
137 &stime.tm_min,
138 &stime.tm_sec
146 stime.tm_mon -= 1;
155 if (stime.tm_year <= 38) {
156 stime.tm_year += 100;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1GeneralizedTime.java 177 String stime = Strings.fromByteArray(time); local
182 if (stime.charAt(stime.length() - 1) == 'Z')
184 return stime.substring(0, stime.length() - 1) + "GMT+00:00";
188 int signPos = stime.length() - 5;
189 char sign = stime.charAt(signPos);
192 return stime.substring(0, signPos)
194 + stime.substring(signPos, signPos + 3)
196 + stime.substring(signPos + 3)
256 String stime = Strings.fromByteArray(time); local
    [all...]
ASN1UTCTime.java 221 String stime = Strings.fromByteArray(time); local
226 if (stime.indexOf('-') < 0 && stime.indexOf('+') < 0)
228 if (stime.length() == 11)
230 return stime.substring(0, 10) + "00GMT+00:00";
234 return stime.substring(0, 12) + "GMT+00:00";
239 int index = stime.indexOf('-');
242 index = stime.indexOf('+');
244 String d = stime;
246 if (index == stime.length() - 3
    [all...]
  /external/strace/mpers-m32/
struct_btrfs_ioctl_received_subvol_args.h 11 } ATTRIBUTE_PACKED stime; member in struct:__anon30255
  /external/strace/mpers-mx32/
struct_btrfs_ioctl_received_subvol_args.h 12 } ATTRIBUTE_PACKED stime; member in struct:__anon30404
  /packages/services/Car/tools/bootio/
bootio_collector.cpp 43 long unsigned utime, ntime, stime, itime; local
48 fscanf(file, "cpu %lu %lu %lu %lu %lu %lu %lu", &utime, &ntime, &stime,
53 cpu.set_stime(stime);
129 uint64_t stime; local
139 &stime,
142 sample->set_stime(stime);
206 return cpu.utime() + cpu.ntime() + cpu.stime() + cpu.itime() + cpu.iowtime() +
272 newerSample->stime() - olderSample->stime()) * 100. / cpuDelta;
  /system/extras/tests/workloads/
systemapps.sh 220 stime=$(getStartTime $actName $tmpTraceOut)
223 ((tdiff=$etime-$stime))
224 if [ $etime -eq 0 -o $stime -eq 0 ]; then
225 handleError $app : could not compute start time stime=$stime etime=$etime
  /art/runtime/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 106 * (4b) stime
116 int stime; local
118 GetTaskStats(t->GetTid(), &native_thread_state, &utime, &stime, &task_cpu);
125 JDWP::Append4BE(bytes, stime);
  /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);
  /packages/services/Car/vehicle_monitor_service/
ProcessMonitor.cpp 54 return (a.second->utime + a.second->utime) > (b.second->stime + b.second->stime);
117 "delta_wbytes: %" PRIu64 ", utime: %" PRIu64" , stime: %" PRIu64 ", "
125 it->second->stime,
224 &pidData->stime,
284 pidData->delta_stime = pidData->stime - oldPidData->stime;
ProcessMonitor.h 43 uint64_t stime; member in struct:android::ProcInfo
  /system/extras/cpustats/
cpustats.c 45 long unsigned utime, ntime, stime, itime, iowtime, irqtime, sirqtime; member in struct:cpu_info
245 &new_total_cpu.utime, &new_total_cpu.ntime, &new_total_cpu.stime, &new_total_cpu.itime,
255 fscanf(file, scanline, &new_cpus[i].utime, &new_cpus[i].ntime, &new_cpus[i].stime,
295 return (cpu->utime + cpu->ntime + cpu->stime + cpu->itime + cpu->iowtime + cpu->irqtime +
330 new_cpu->stime - old_cpu->stime,
343 new_cpu->stime - old_cpu->stime,
  /external/ltp/testcases/kernel/syscalls/stime/
stime01.c 24 * Verify that the system call stime() successfully sets the system's idea
28 * stime() should succeed to set the system data/time to the specified time.
126 * Invoke stime(2) to set the system's time to the specified
129 if (stime(&new_time) < 0) {
130 tst_resm(TFAIL | TERRNO, "stime(%ld) failed", new_time);
135 * to stime().
140 "system's time after stime");
stime02.c 24 * Verify that the system call stime() fails to set the system's idea
28 * stime() should fail with return value -1 and set errno to EPERM.
105 * Invoke stime(2) to set the system's time
108 TEST(stime(&new_time));
112 tst_resm(TPASS, "stime(2) fails, Caller not "
115 tst_resm(TFAIL, "stime(2) fails, Caller not "
120 tst_resm(TFAIL, "stime(2) returned %ld, expected -1, "
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
linux_based_platform_backend.py 52 stime = float(stats[14])
53 cpu_process_jiffies = utime + stime
  /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/autotest/client/tools/
html_report.py     [all...]
  /external/elfutils/tests/
run-readelf-vmcoreinfo.sh 31 utime: 0.000000, stime: 0.000000, cutime: 0.000000, cstime: 0.000000
49 utime: 0.000000, stime: 0.000000, cutime: 0.000000, cstime: 0.000000
run-readelf-mixed-corenote.sh 32 utime: 0.000000, stime: 0.010000, cutime: 0.000000, cstime: 0.000000
98 utime: 0.000042, stime: 0.000103, cutime: 0.000000, cstime: 0.000000
163 utime: 0.000043, stime: 0.000102, cutime: 0.000000, cstime: 0.000000
235 utime: 0.000000, stime: 0.004000, cutime: 0.000000, cstime: 0.000000
302 utime: 0.010000, stime: 0.000000, cutime: 0.000000, cstime: 0.000000
442 utime: 0.000000, stime: 0.001000, cutime: 0.000000, cstime: 0.000000
508 utime: 0.000000, stime: 0.001000, cutime: 0.000000, cstime: 0.000000
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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;
  /external/ltp/tools/top-LTP/proc/
readproc.h 28 lu flags, min_flt, cmin_flt, maj_flt, cmaj_flt, utime, stime,
53 stime, /* kernel-mode CPU time accumulated by process */ member in struct:proc_t
56 cstime, /* cumulative stime of process and reaped children */
compare.c 108 CMP_INT(stime)
165 'K', "stime", &cmp_stime}, {
  /system/extras/ANRdaemon/
ANRdaemon.cpp 74 unsigned long utime, ntime, stime, itime; member in struct:cpu_stat
140 &cpu->stime, &cpu->itime, &cpu->iowtime, &cpu->irqtime,
151 cpu->total = cpu->utime + cpu->ntime + cpu->stime + cpu->itime
  /packages/apps/Test/connectivity/PMC/src/com/android/pmc/
WifiConnScanReceiver.java 90 protected String doInBackground(Integer... stime) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
GenFw.c 2920 struct tm stime; local
    [all...]

Completed in 1070 milliseconds

1 2 3 4 5 6 7 8 9