Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot_driver.cpp314 int dsize = 0; in RunAndReadBuffer() local
315 if ((ret = RawCommand(cmd, response, info, &dsize))) { in RunAndReadBuffer()
320 if (dsize <= 0) { in RunAndReadBuffer()
322 cmd.c_str(), dsize); in RunAndReadBuffer()
326 const uint64_t total_size = dsize; in RunAndReadBuffer()
429 int* dsize) { in RawCommand() argument
431 auto result = RawCommand(cmd, response, info, dsize); in RawCommand()
437 std::vector<std::string>* info, int* dsize) { in RawCommand() argument
450 return HandleResponse(response, info, dsize); in RawCommand()
464 int* dsize) { in HandleResponse() argument
[all …]
Dfastboot_driver.h132 int* dsize = nullptr);
135 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
141 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
Dfastboot_driver_interface.h53 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.cpp1655 int dsize = -1; in TEST_P() local
1658 ASSERT_EQ(fb->RawCommand(full_cmd, &resp, nullptr, &dsize), expect); in TEST_P()
1662 EXPECT_GT(dsize, 0); in TEST_P()