Home
last modified time | relevance | path

Searched refs:FastBootDriver (Results 1 – 6 of 6) sorted by relevance

/system/core/fastboot/
Dfastboot_driver.cpp57 FastBootDriver::FastBootDriver(Transport* transport, DriverCallbacks driver_callbacks, in FastBootDriver() function in fastboot::FastBootDriver
65 FastBootDriver::~FastBootDriver() { in ~FastBootDriver()
68 RetCode FastBootDriver::Boot(std::string* response, std::vector<std::string>* info) { in Boot()
72 RetCode FastBootDriver::Continue(std::string* response, std::vector<std::string>* info) { in Continue()
76 RetCode FastBootDriver::CreatePartition(const std::string& partition, const std::string& size) { in CreatePartition()
81 RetCode FastBootDriver::DeletePartition(const std::string& partition) { in DeletePartition()
85 RetCode FastBootDriver::Erase(const std::string& partition, std::string* response, in Erase()
90 RetCode FastBootDriver::Flash(const std::string& partition, std::string* response, in Flash()
95 RetCode FastBootDriver::GetVar(const std::string& key, std::string* val, in GetVar()
100 RetCode FastBootDriver::GetVarAll(std::vector<std::string>* response) { in GetVarAll()
[all …]
Dfastboot_driver.h63 class FastBootDriver {
71 FastBootDriver(Transport* transport, DriverCallbacks driver_callbacks = {},
73 ~FastBootDriver();
Dfastboot.cpp104 fastboot::FastBootDriver* fb = nullptr;
1750 fastboot::FastBootDriver fastboot_driver(transport, driver_callbacks, false); in Main()
/system/core/fastboot/fuzzy_fastboot/
Dfixtures.cpp134 fb = std::unique_ptr<FastBootDriver>(new FastBootDriver(transport.get(), {}, true)); in SetUp()
189 fb = std::unique_ptr<FastBootDriver>(new FastBootDriver(transport.get(), {}, true)); in ReconnectFastbootDevice()
Dfixtures.h68 std::unique_ptr<FastBootDriver> fb;
Dmain.cpp95 return os << FastBootDriver::RCString(ret); in operator <<()
98 bool PartitionHash(FastBootDriver* fb, const std::string& part, std::string* hash, int* retcode, in PartitionHash()