Searched defs:times (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/native/
H A Djava_io_File.cpp85 utimbuf times; local
86 times.actime = sb.st_atime;
87 times.modtime = static_cast<time_t>(ms / 1000);
88 return (utime(path.c_str(), &times) == 0);
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
H A DBerInputStream.java288 public int[] times; field in class:BerInputStream
323 if (times == null) {
324 times = new int[7];
326 times[0] = strToInt(contentOffset, 4); // year
327 times[1] = strToInt(contentOffset + 4, 2); // month
328 times[2] = strToInt(contentOffset + 6, 2); // day
329 times[3] = strToInt(contentOffset + 8, 2); // hour
330 times[4] = strToInt(contentOffset + 10, 2); // minute
331 times[5] = strToInt(contentOffset + 12, 2); // second
335 times[
[all...]

Completed in 54 milliseconds