Home
last modified time | relevance | path

Searched refs:max_flash (Results 1 – 3 of 3) sorted by relevance

/system/core/fastboot/fuzzy_fastboot/
Dfixtures.h125 int64_t max_flash; variable
Dmain.cpp1048 std::vector<char> buf = RandomBuf(max_flash, rand_char); in TEST_P()
1070 const std::vector<char> buf = RandomBuf(max_flash, rand_char); in TEST_P()
1073 if (max_flash < part_size) { in TEST_P()
1088 const std::vector<char> buf_zeros(max_flash, 0); in TEST_P()
1089 const std::vector<char> buf_ones(max_flash, -1); // All bits are set to 1 in TEST_P()
1139 std::vector<char> buf = RandomBuf(max_flash + 1); // One too large in TEST_P()
1200 std::vector<char> buf = RandomBuf(max_flash); in TEST_P()
1228 std::vector<char> buf(max_flash, -1); // All 1's in TEST_P()
1256 std::vector<char> buf(max_flash, 0); // All 0's in TEST_P()
1304 std::vector<char> buf = RandomBuf(max_flash / 2); in TEST_P()
Dfixtures.cpp305 max_flash = std::min(part_size, max_dl); in SetUp()