Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot_driver.cpp294 int dsize; in UploadInner() local
295 if ((ret = RawCommand(FB_CMD_UPLOAD, response, info, &dsize))) { in UploadInner()
300 if (!dsize) { in UploadInner()
306 data.resize(dsize); in UploadInner()
369 int* dsize) { in RawCommand() argument
371 auto result = RawCommand(cmd, response, info, dsize); in RawCommand()
377 std::vector<std::string>* info, int* dsize) { in RawCommand() argument
390 return HandleResponse(response, info, dsize); in RawCommand()
404 int* dsize) { in HandleResponse() argument
449 if (dsize) *dsize = num; in HandleResponse()
Dfastboot_driver.h130 int* dsize = nullptr);
133 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
139 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
/system/core/fastboot/fuzzy_fastboot/
Dfixtures.cpp107 int* dsize) { in HandleResponse() argument
108 return fb->HandleResponse(response, info, dsize); in HandleResponse()
Dfixtures.h60 std::vector<std::string>* info = nullptr, int* dsize = nullptr);
Dmain.cpp1520 int dsize = -1; in TEST_P() local
1523 ASSERT_EQ(fb->RawCommand(full_cmd, &resp, nullptr, &dsize), expect); in TEST_P()
1527 EXPECT_GT(dsize, 0); in TEST_P()
/system/vold/
Dcryptfs.cpp2539 unsigned int dsize; in persist_get_max_entries() local
2549 dsize = crypt_ftr.persist_data_size; in persist_get_max_entries()
2551 dsize = CRYPT_PERSIST_DATA_SIZE; in persist_get_max_entries()
2554 if (dsize > sizeof(struct crypt_persist_data)) { in persist_get_max_entries()
2555 return (dsize - sizeof(struct crypt_persist_data)) / sizeof(struct crypt_persist_entry); in persist_get_max_entries()