Home
last modified time | relevance | path

Searched refs:month (Results 1 – 9 of 9) sorted by relevance

/system/core/logcat/tests/
Dlogcat_benchmark.cpp37 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/
Dkeymaster_configuration.cpp127 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/
Dbootimg.h91 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/
Dreal_time_provider_unittest.cc47 now_exp.month = 3; in CurrTime()
Dupdate_manager_unittest.cc63 now_exp.month = 3; in FixedTime()
Dreal_shill_provider_unittest.cc88 now_exp.month = 3; in InitTime()
Dreal_updater_provider_unittest.cc53 now_exp.month = 3; in FixedTime()
/system/core/fastboot/
Dfastboot.cpp2212 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/
Dutils.cc756 exp_time.month, in ToString()