Searched refs:month (Results 1 – 9 of 9) sorted by relevance
/system/core/logcat/tests/ |
D | logcat_benchmark.cpp | 37 int month; in BM_logcat_sorted_order() member in BM_logcat_sorted_order::timestamp 49 ok = sscanf(buffer, "%d-%d %d:%d:%d.%d ", &month, &day, &hour, in BM_logcat_sorted_order() 59 return !ok || !T.ok || (month < T.month) || in BM_logcat_sorted_order() 60 ((month == T.month) && in BM_logcat_sorted_order()
|
/system/keymaster/android_keymaster/ |
D | keymaster_configuration.cpp | 127 uint32_t month = match_to_uint32(patchlevel_str, matches[kMonthMatch]); in GetOsPatchlevel() local 129 if (month < 1 || month > 12) { in GetOsPatchlevel() 130 ALOGE("Invalid patch month %d", month); in GetOsPatchlevel() 133 return year * 100 + month; in GetOsPatchlevel()
|
/system/tools/mkbootimg/include/bootimg/ |
D | bootimg.h | 91 void SetOsPatchLevel(unsigned year, unsigned month) { in SetOsPatchLevel() 93 os_version |= (((year - 2000) & 0x7f) << 4) | ((month & 0xf) << 0); in SetOsPatchLevel() 261 void SetOsPatchLevel(unsigned year, unsigned month) { in SetOsPatchLevel() 263 os_version |= (((year - 2000) & 0x7f) << 4) | ((month & 0xf) << 0); in SetOsPatchLevel()
|
/system/update_engine/update_manager/ |
D | real_time_provider_unittest.cc | 47 now_exp.month = 3; in CurrTime()
|
D | update_manager_unittest.cc | 63 now_exp.month = 3; in FixedTime()
|
D | real_shill_provider_unittest.cc | 88 now_exp.month = 3; in InitTime()
|
D | real_updater_provider_unittest.cc | 53 now_exp.month = 3; in FixedTime()
|
/system/core/fastboot/ |
D | fastboot.cpp | 2212 unsigned year, month, day; in ParseOsPatchLevel() local 2213 if (sscanf(arg, "%u-%u-%u", &year, &month, &day) != 3) { in ParseOsPatchLevel() 2217 if (month < 1 || month > 12) syntax_error("month out of range: %d", month); in ParseOsPatchLevel() 2218 hdr->SetOsPatchLevel(year, month); in ParseOsPatchLevel()
|
/system/update_engine/common/ |
D | utils.cc | 756 exp_time.month, in ToString()
|