Searched refs:dsize (Results 1 – 6 of 6) sorted by relevance
/system/core/fastboot/ |
D | fastboot_driver.cpp | 315 int dsize = 0; in RunAndReadBuffer() local 316 if ((ret = RawCommand(cmd, response, info, &dsize))) { in RunAndReadBuffer() 321 if (dsize <= 0) { in RunAndReadBuffer() 323 cmd.c_str(), dsize); in RunAndReadBuffer() 327 const uint64_t total_size = dsize; in RunAndReadBuffer() 430 int* dsize) { in RawCommand() argument 432 auto result = RawCommand(cmd, response, info, dsize); in RawCommand() 438 std::vector<std::string>* info, int* dsize) { in RawCommand() argument 451 return HandleResponse(response, info, dsize); in RawCommand() 465 int* dsize) { in HandleResponse() argument [all …]
|
D | fastboot_driver.h | 129 int* dsize = nullptr); 132 std::vector<std::string>* info = nullptr, int* dsize = nullptr); 138 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
|
D | fastboot_driver_interface.h | 57 std::vector<std::string>* info = nullptr, int* dsize = nullptr) = 0;
|
/system/core/fastboot/fuzzy_fastboot/ |
D | fixtures.cpp | 115 int* dsize) { in HandleResponse() argument 116 return fb->HandleResponse(response, info, dsize); in HandleResponse()
|
D | fixtures.h | 63 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
|
D | main.cpp | 1648 int dsize = -1; in TEST_P() local 1651 ASSERT_EQ(fb->RawCommand(full_cmd, &resp, nullptr, &dsize), expect); in TEST_P() 1655 EXPECT_GT(dsize, 0); in TEST_P()
|