Home
last modified time | relevance | path

Searched refs:RawCommand (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/core/fastboot/
H A Dfastboot_driver.cpp73 return RawCommand(FB_CMD_BOOT, "Booting", response, info); in Boot()
77 return RawCommand(FB_CMD_CONTINUE, "Resuming boot", response, info); in Continue()
81 return RawCommand(FB_CMD_CREATE_PARTITION ":" + partition + ":" + size, in CreatePartition()
101 return RawCommand(FB_CMD_GETVAR ":" + key, val, info); in GetVar()
110 return RawCommand(FB_CMD_REBOOT, "Rebooting", response, info); in Reboot()
119 return RawCommand(FB_CMD_RESIZE_PARTITION ":" + partition + ":" + size, in ResizePartition()
133 auto result = RawCommand(raw, response, info); in SnapshotUpdateCommand()
314 if ((ret = RawCommand(cmd, response, info, &dsize))) { in RunAndReadBuffer()
430 auto result = RawCommand(cmd, response, info, dsize); in RawCommand()
435 RetCode FastBootDriver::RawCommand(const std::string& cmd, std::string* response, in RawCommand() function in fastboot::FastBootDriver
[all …]
H A Dfastboot_driver.h135 RetCode RawCommand(const std::string& cmd, const std::string& message,
139 RetCode RawCommand(const std::string& cmd, std::string* response = nullptr,
H A Dfastboot.cpp1560 fb->RawCommand("signature", "installing signature"); in FlashImage()
1590 fb->RawCommand(command, "Updating super partition"); in UpdateSuperPartition()
1677 fb->RawCommand(command, ""); in do_oem_command()
1828 fb->RawCommand("oem allow-flash-super"); in wipe_super()
2128 fb->RawCommand("signature", "installing signature"); in Main()
2264 fb->RawCommand("gsi:wipe", "wiping GSI"); in Main()
2266 fb->RawCommand("gsi:disable", "disabling GSI"); in Main()
/aosp12/system/core/fastboot/fuzzy_fastboot/
H A Dmain.cpp848 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
854 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
860 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
866 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
873 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
893 EXPECT_EQ(fb->RawCommand(s), DEVICE_FAIL) in TEST_F()
897 EXPECT_EQ(fb->RawCommand(s1), DEVICE_FAIL) in TEST_F()
901 EXPECT_EQ(fb->RawCommand(s2), DEVICE_FAIL) in TEST_F()
905 EXPECT_EQ(fb->RawCommand(s3), DEVICE_FAIL) in TEST_F()
913 EXPECT_EQ(fb->RawCommand(s + rs), DEVICE_FAIL) in TEST_F()
[all …]
H A Dfixtures.cpp240 ASSERT_EQ(fb->RawCommand("flashing get_unlock_ability", &resp, &info), SUCCESS) in SetLockState()
262 ASSERT_EQ(fb->RawCommand("flashing " + cmd, &resp), SUCCESS) in SetLockState()