Home
last modified time | relevance | path

Searched refs:stime (Results 1 – 25 of 69) sorted by relevance

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1GeneralizedTime.java177 String stime = Strings.fromByteArray(time); in getTime() local
182 if (stime.charAt(stime.length() - 1) == 'Z') in getTime()
184 return stime.substring(0, stime.length() - 1) + "GMT+00:00"; in getTime()
188 int signPos = stime.length() - 5; in getTime()
189 char sign = stime.charAt(signPos); in getTime()
192 return stime.substring(0, signPos) in getTime()
194 + stime.substring(signPos, signPos + 3) in getTime()
196 + stime.substring(signPos + 3); in getTime()
200 signPos = stime.length() - 3; in getTime()
201 sign = stime.charAt(signPos); in getTime()
[all …]
DASN1UTCTime.java221 String stime = Strings.fromByteArray(time); in getTime() local
226 if (stime.indexOf('-') < 0 && stime.indexOf('+') < 0) in getTime()
228 if (stime.length() == 11) in getTime()
230 return stime.substring(0, 10) + "00GMT+00:00"; in getTime()
234 return stime.substring(0, 12) + "GMT+00:00"; in getTime()
239 int index = stime.indexOf('-'); in getTime()
242 index = stime.indexOf('+'); in getTime()
244 String d = stime; in getTime()
246 if (index == stime.length() - 3) in getTime()
/external/autotest/client/tools/
Dhtml_report.py1555 stime = int(pair[1])
1556 results_data[parts[1]] = [stime, [], None]
1593 stime = results_data[parts[2]][0]
1594 total_exec_time_sec = etime - stime
/external/elfutils/tests/
Drun-readelf-mixed-corenote.sh32 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
Drun-readelf-vmcoreinfo.sh31 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
/external/strace/mpers-m32/
Dstruct_btrfs_ioctl_received_subvol_args.h11 } ATTRIBUTE_PACKED stime; member
/external/strace/mpers-mx32/
Dstruct_btrfs_ioctl_received_subvol_args.h12 } ATTRIBUTE_PACKED stime; member
/external/chromium-trace/catapult/systrace/atrace_helper/jni/
Dprocess_info.h45 unsigned long stime() const { return stime_; } in stime() function
Dmain.cc92 pinfo.minflt(), pinfo.majflt(), pinfo.utime(), pinfo.stime()); in SerializeSnapshot()
/external/ltp/testcases/kernel/syscalls/stime/
Dstime02.c108 TEST(stime(&new_time)); in main()
Dstime01.c129 if (stime(&new_time) < 0) { in main()
/external/ltp/testcases/kernel/syscalls/
DMakefile44 sigrelse sigsuspend sigtimedwait sigwait sigwaitinfo stime \
/external/xmlrpcpp/src/
DXmlRpcValue.cpp405 std::string stime = valueXml.substr(*offset, valueEnd-*offset); in timeFromXml() local
408 …if (sscanf(stime.c_str(),"%4d%2d%2dT%2d:%2d:%2d",&t.tm_year,&t.tm_mon,&t.tm_mday,&t.tm_hour,&t.tm_… in timeFromXml()
414 *offset += int(stime.length()); in timeFromXml()
/external/autotest/tko/
Djob_serializer_unittest.py217 def check_time(self, dTime, stime): argument
225 self.assertEqual(long(t), stime/1000)
/external/libchrome/base/process/
Dprocess_metrics_linux.cc461 int stime = 0; in ParseProcStatCPU() local
462 if (sscanf(&input.data()[i], "%d %d", &utime, &stime) != 2) in ParseProcStatCPU()
465 return utime + stime; in ParseProcStatCPU()
/external/ltp/testcases/kernel/include/
Ds390.in256 stime 25
Dsparc.in238 stime 233
Ds390x.in256 stime 25
Dsparc64.in214 stime 233
Di386.in26 stime 25
Dpowerpc.in26 stime 25
Dpowerpc64.in26 stime 25
Dsh.in26 stime 25
/external/ltp/doc/
Dltp-howto.txt246 tag=cmdln stime=971450564
300 tag=cmdln stime=971465653
325 tag=cmdln stime=971465653
350 tag=cmdln stime=971465653
/external/elfutils/backends/
Dlinux-core-note.c159 TIMEVAL_FIELD (stime),

123