Home
last modified time | relevance | path

Searched refs:ParseOsPatchLevel (Results 1 – 3 of 3) sorted by relevance

/aosp12/system/core/fastboot/
H A Dfastboot_test.cpp21 TEST(FastBoot, ParseOsPatchLevel) { in TEST() argument
26 fb.ParseOsPatchLevel(&hdr, "2018-01-05"); in TEST()
30 EXPECT_DEATH(fb.ParseOsPatchLevel(&hdr, "2018"), "should be YYYY-MM-DD"); in TEST()
31 EXPECT_DEATH(fb.ParseOsPatchLevel(&hdr, "2018-01"), "should be YYYY-MM-DD"); in TEST()
32 EXPECT_DEATH(fb.ParseOsPatchLevel(&hdr, "2128-01-05"), "year out of range"); in TEST()
33 EXPECT_DEATH(fb.ParseOsPatchLevel(&hdr, "2018-13-05"), "month out of range"); in TEST()
H A Dfastboot.h35 void ParseOsPatchLevel(boot_img_hdr_v1*, const char*);
H A Dfastboot.cpp1967 ParseOsPatchLevel(&g_boot_img_hdr, optarg); in Main()
2342 void FastBootTool::ParseOsPatchLevel(boot_img_hdr_v1* hdr, const char* arg) { in ParseOsPatchLevel() function in FastBootTool