Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot_driver.cpp313 int dsize = 0; in RunAndReadBuffer() local
314 if ((ret = RawCommand(cmd, response, info, &dsize))) { in RunAndReadBuffer()
319 if (dsize <= 0) { in RunAndReadBuffer()
321 cmd.c_str(), dsize); in RunAndReadBuffer()
325 const uint64_t total_size = dsize; in RunAndReadBuffer()
428 int* dsize) { in RawCommand() argument
430 auto result = RawCommand(cmd, response, info, dsize); in RawCommand()
436 std::vector<std::string>* info, int* dsize) { in RawCommand() argument
449 return HandleResponse(response, info, dsize); in RawCommand()
463 int* dsize) { in HandleResponse() argument
[all …]
Dfastboot_driver.h137 int* dsize = nullptr);
140 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
146 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
/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.cpp1552 int dsize = -1; in TEST_P() local
1555 ASSERT_EQ(fb->RawCommand(full_cmd, &resp, nullptr, &dsize), expect); in TEST_P()
1559 EXPECT_GT(dsize, 0); in TEST_P()
/system/vold/
Dcryptfs.cpp2477 unsigned int dsize; in persist_get_max_entries() local
2487 dsize = crypt_ftr.persist_data_size; in persist_get_max_entries()
2489 dsize = CRYPT_PERSIST_DATA_SIZE; in persist_get_max_entries()
2492 if (dsize > sizeof(struct crypt_persist_data)) { in persist_get_max_entries()
2493 return (dsize - sizeof(struct crypt_persist_data)) / sizeof(struct crypt_persist_entry); in persist_get_max_entries()