Home
last modified time | relevance | path

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

/system/core/fastboot/
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()
Dfastboot.h35 void ParseOsPatchLevel(boot_img_hdr_v1*, const char*);
Dfastboot.cpp1661 ParseOsPatchLevel(&g_boot_img_hdr, optarg); in Main()
2011 void FastBootTool::ParseOsPatchLevel(boot_img_hdr_v1* hdr, const char* arg) { in ParseOsPatchLevel() function in FastBootTool