Searched refs:year (Results 1 – 12 of 12) sorted by relevance
/system/tools/mkbootimg/include/bootimg/ |
D | bootimg.h | 98 void SetOsPatchLevel(unsigned year, unsigned month) { in SetOsPatchLevel() 100 os_version |= (((year - 2000) & 0x7f) << 4) | ((month & 0xf) << 0); in SetOsPatchLevel() 269 void SetOsPatchLevel(unsigned year, unsigned month) { in SetOsPatchLevel() 271 os_version |= (((year - 2000) & 0x7f) << 4) | ((month & 0xf) << 0); in SetOsPatchLevel()
|
/system/keymaster/android_keymaster/ |
D | keymaster_configuration.cpp | 86 uint32_t year = match_to_uint32(patchlevel_str, matches[kYearMatch]); in GetPatchlevel() local 101 return year * 10000 + month * 100 + day; in GetPatchlevel() 104 return year * 100 + month; in GetPatchlevel()
|
/system/update_engine/update_manager/ |
D | real_time_provider_unittest.cc | 47 now_exp.year = 2014; in CurrTime()
|
D | update_manager_unittest.cc | 63 now_exp.year = 2014; in FixedTime()
|
D | real_shill_provider_unittest.cc | 87 now_exp.year = 2014; in InitTime()
|
D | real_updater_provider_unittest.cc | 49 now_exp.year = 2014; in FixedTime()
|
/system/libziparchive/ |
D | zip_writer.cc | 167 int year = ptm->tm_year; in ExtractTimeAndDate() local 168 if (year < 80) { in ExtractTimeAndDate() 169 year = 80; in ExtractTimeAndDate() 172 *out_date = static_cast<uint16_t>((year - 80) << 9 | (ptm->tm_mon + 1) << 5 | ptm->tm_mday); in ExtractTimeAndDate()
|
/system/timezone/input_tools/android/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/ |
D | TzLookupGenerator.java | 579 int year = Integer.parseInt(yearString); in getYearStartForData() local 582 calendar.set(year, Calendar.JANUARY, 1, 0, 0, 0); in getYearStartForData()
|
/system/bt/doc/ |
D | style_guide.md | 232 Each header file must begin with the following Apache 2.0 License with `<year>` 233 and `<owner>` replaced with the year in which the file was authored and the 238 * Copyright <year> <owner>
|
/system/core/fastboot/ |
D | fastboot.cpp | 2343 unsigned year, month, day; in ParseOsPatchLevel() local 2344 if (sscanf(arg, "%u-%u-%u", &year, &month, &day) != 3) { in ParseOsPatchLevel() 2347 if (year < 2000 || year >= 2128) syntax_error("year out of range: %d", year); in ParseOsPatchLevel() 2349 hdr->SetOsPatchLevel(year, month); in ParseOsPatchLevel()
|
/system/update_engine/common/ |
D | utils.cc | 767 exp_time.year, in ToString()
|
/system/logging/logcat/tests/ |
D | logcat_test.cpp | 179 TEST(logcat, year) { in TEST() argument
|