Home
last modified time | relevance | path

Searched refs:FastBootTest (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/core/fastboot/fuzzy_fastboot/
H A Dfixtures.cpp79 bool FastBootTest::IsFastbootOverTcp() { in IsFastbootOverTcp()
83 bool FastBootTest::UsbStillAvailible() { in UsbStillAvailible()
99 bool FastBootTest::UserSpaceFastboot() { in UserSpaceFastboot()
119 void FastBootTest::SetUp() { in SetUp()
151 void FastBootTest::TearDown() { in TearDown()
168 void FastBootTest::TearDownSerial() { in TearDownSerial()
275 std::string FastBootTest::device_path = "";
276 std::string FastBootTest::cb_scratch = "";
277 std::string FastBootTest::initial_slot = "";
278 int FastBootTest::serial_port = 0;
[all …]
H A Dfixtures.h43 class FastBootTest : public testing::Test {
81 class ModeTest : public FastBootTest {
122 : public FastBootTest,
H A Dmain.cpp167 return FastBootTest::MatchFastboot(info, fastboot::FastBootTest::device_serial); in TEST()
170 for (int i = 0; i < FastBootTest::MAX_USB_TRIES && !transport; i++) { in TEST()
175 << 10 * FastBootTest::MAX_USB_TRIES << "ms"; in TEST()
1787 fastboot::FastBootTest::device_serial = args.at("serial"); in main()
1792 if (!fastboot::FastBootTest::IsFastbootOverTcp()) { in main()
1795 … return fastboot::FastBootTest::MatchFastboot(info, fastboot::FastBootTest::device_serial); in main()
1806 fastboot::FastBootTest::serial_port = fastboot::ConfigureSerial(args.at("serial_port")); in main()
1811 if (fastboot::FastBootTest::serial_port > 0) { in main()
1812 close(fastboot::FastBootTest::serial_port); in main()
/aosp12/system/core/fastboot/
H A Dfastboot_driver.h65 friend class FastBootTest; variable