Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot_driver.cpp315 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 …]
Dfastboot_driver.h129 int* dsize = nullptr);
132 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
138 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
Dfastboot_driver_interface.h57 std::vector<std::string>* info = nullptr, int* dsize = nullptr) = 0;
/system/core/fastboot/fuzzy_fastboot/
Dfixtures.cpp115 int* dsize) { in HandleResponse() argument
116 return fb->HandleResponse(response, info, dsize); in HandleResponse()
Dfixtures.h63 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
Dmain.cpp1648 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()