Home
last modified time | relevance | path

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

/system/logging/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.cpp87 uint32_t month = match_to_uint32(patchlevel_str, matches[kMonthMatch]); in GetPatchlevel() local
89 if (month < 1 || month > 12) { in GetPatchlevel()
90 ALOGE("Invalid patch month %d", month); in GetPatchlevel()
101 return year * 10000 + month * 100 + day; in GetPatchlevel()
104 return year * 100 + month; in GetPatchlevel()
/system/tools/mkbootimg/include/bootimg/
Dbootimg.h98 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/update_engine/update_manager/
Dreal_time_provider_unittest.cc48 now_exp.month = 3; in CurrTime()
Dupdate_manager_unittest.cc64 now_exp.month = 3; in FixedTime()
Dreal_shill_provider_unittest.cc88 now_exp.month = 3; in InitTime()
Dreal_updater_provider_unittest.cc50 now_exp.month = 3; in FixedTime()
/system/core/fastboot/
Dfastboot.cpp2343 unsigned year, month, day; in ParseOsPatchLevel() local
2344 if (sscanf(arg, "%u-%u-%u", &year, &month, &day) != 3) { in ParseOsPatchLevel()
2348 if (month < 1 || month > 12) syntax_error("month out of range: %d", month); in ParseOsPatchLevel()
2349 hdr->SetOsPatchLevel(year, month); in ParseOsPatchLevel()
/system/update_engine/common/
Dutils.cc765 exp_time.month, in ToString()