Searched refs:month (Results 1 – 8 of 8) sorted by relevance
/system/logging/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/keymint/hal/src/ |
D | env.rs | 65 let month = extract_u32(captures.name("month"))?; in extract_truncated_patchlevel() localVariable 66 if !(1..=12).contains(&month) { in extract_truncated_patchlevel() 67 return Err(format!("month out of range: {}", month)); in extract_truncated_patchlevel() 70 Ok(year * 100 + month) in extract_truncated_patchlevel() 82 let month = extract_u32(captures.name("month"))?; in extract_patchlevel() localVariable 83 if !(1..=12).contains(&month) { in extract_patchlevel() 84 return Err(format!("month out of range: {}", month)); in extract_patchlevel() 90 Ok(year * 10000 + month * 100 + day) in extract_patchlevel()
|
/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 | 91 uint32_t month = match_to_uint32(patchlevel_str, matches[kMonthMatch]); in GetPatchlevel() local 93 if (month < 1 || month > 12) { in GetPatchlevel() 94 ALOGE("Invalid patch month %d", month); in GetPatchlevel() 105 return year * 10000 + month * 100 + day; in GetPatchlevel() 108 return year * 100 + month; in GetPatchlevel()
|
/system/core/fastboot/fuzzer/ |
D | README.md | 13 2. Month (parameter name: `month`) 21 | `month` | `1` to `12` | Value obtained from FuzzedDataProvider|
|
D | fastboot_fuzzer.cpp | 71 int32_t month = fdp_->ConsumeIntegralInRange<int32_t>(kMonthMin, kMonthMax); in InvokeParseApi() local 73 string date = to_string(year) + "-" + to_string(month) + "-" + to_string(day); in InvokeParseApi()
|
/system/core/fastboot/ |
D | fastboot.cpp | 2631 unsigned year, month, day; in ParseOsPatchLevel() local 2632 if (sscanf(arg, "%u-%u-%u", &year, &month, &day) != 3) { in ParseOsPatchLevel() 2636 if (month < 1 || month > 12) syntax_error("month out of range: %d", month); in ParseOsPatchLevel() 2637 hdr->SetOsPatchLevel(year, month); in ParseOsPatchLevel()
|
/system/update_engine/common/ |
D | utils.cc | 917 exp_time.month, in ToString()
|