Searched refs:FastBootDriver (Results 1 – 6 of 6) sorted by relevance
/system/core/fastboot/ |
D | fastboot_driver.cpp | 61 FastBootDriver::FastBootDriver(Transport* transport, DriverCallbacks driver_callbacks, in FastBootDriver() function in fastboot::FastBootDriver 69 FastBootDriver::~FastBootDriver() { in ~FastBootDriver() 72 RetCode FastBootDriver::Boot(std::string* response, std::vector<std::string>* info) { in Boot() 76 RetCode FastBootDriver::Continue(std::string* response, std::vector<std::string>* info) { in Continue() 80 RetCode FastBootDriver::CreatePartition(const std::string& partition, const std::string& size) { in CreatePartition() 85 RetCode FastBootDriver::DeletePartition(const std::string& partition) { in DeletePartition() 89 RetCode FastBootDriver::Erase(const std::string& partition, std::string* response, in Erase() 94 RetCode FastBootDriver::Flash(const std::string& partition, std::string* response, in Flash() 99 RetCode FastBootDriver::GetVar(const std::string& key, std::string* val, in GetVar() 104 RetCode FastBootDriver::GetVarAll(std::vector<std::string>* response) { in GetVarAll() [all …]
|
D | fastboot_driver.h | 64 class FastBootDriver { 72 FastBootDriver(Transport* transport, DriverCallbacks driver_callbacks = {}, 74 ~FastBootDriver();
|
D | fastboot.cpp | 109 fastboot::FastBootDriver* fb = nullptr; 2056 fastboot::FastBootDriver fastboot_driver(transport, driver_callbacks, false); in Main()
|
/system/core/fastboot/fuzzy_fastboot/ |
D | fixtures.cpp | 146 fb = std::unique_ptr<FastBootDriver>(new FastBootDriver(transport.get(), {}, true)); in SetUp() 203 fb = std::unique_ptr<FastBootDriver>(new FastBootDriver(transport.get(), {}, true)); in ReconnectFastbootDevice() 223 fb = std::unique_ptr<FastBootDriver>(new FastBootDriver(transport.get(), {}, true)); in ReconnectFastbootDevice()
|
D | fixtures.h | 71 std::unique_ptr<FastBootDriver> fb;
|
D | main.cpp | 97 return os << FastBootDriver::RCString(ret); in operator <<() 100 bool PartitionHash(FastBootDriver* fb, const std::string& part, std::string* hash, int* retcode, in PartitionHash()
|