Home
last modified time | relevance | path

Searched refs:dosdate (Results 1 – 5 of 5) sorted by relevance

/external/zlib/src/contrib/minizip/
Dminiunz.c83 void change_file_date(filename,dosdate,tmu_date) in change_file_date() argument
85 uLong dosdate;
95 DosDateTimeToFileTime((WORD)(dosdate>>16),(WORD)dosdate,&ftLocal);
/external/libvncserver/webclients/novnc/include/
Djsunzip.js54 this.getDOSDate = function(dosdate, dostime) { argument
55 var day = dosdate & 0x1f;
56 var month = ((dosdate >> 5) & 0xf) - 1;
57 var year = 1980 + ((dosdate >> 9) & 0x7f)
/external/python/cpython2/Modules/
Dzipimport.c1157 parse_dostime(int dostime, int dosdate) in parse_dostime() argument
1166 stm.tm_mday = dosdate & 0x1f; in parse_dostime()
1167 stm.tm_mon = ((dosdate >> 5) & 0x0f) - 1; in parse_dostime()
1168 stm.tm_year = ((dosdate >> 9) & 0x7f) + 80; in parse_dostime()
/external/python/cpython2/Lib/
Dzipfile.py332 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
363 self.compress_type, dostime, dosdate, CRC,
1277 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
1313 flag_bits, zinfo.compress_type, dostime, dosdate,
1322 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
/external/chromium-trace/catapult/third_party/zipfile/
Dzipfile_2_7_13.py332 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
363 self.compress_type, dostime, dosdate, CRC,
1277 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
1313 flag_bits, zinfo.compress_type, dostime, dosdate,
1322 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,