Home
last modified time | relevance | path

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

/system/core/fastboot/fuzzy_fastboot/
Dfixtures.h128 int64_t max_flash; variable
Dmain.cpp1080 std::vector<char> buf = RandomBuf(max_flash, rand_char); in TEST_P()
1102 const std::vector<char> buf = RandomBuf(max_flash, rand_char); in TEST_P()
1105 if (max_flash < part_size) { in TEST_P()
1120 const std::vector<char> buf_zeros(max_flash, 0); in TEST_P()
1121 const std::vector<char> buf_ones(max_flash, -1); // All bits are set to 1 in TEST_P()
1171 std::vector<char> buf = RandomBuf(max_flash + 1); // One too large in TEST_P()
1232 std::vector<char> buf = RandomBuf(max_flash); in TEST_P()
1260 std::vector<char> buf(max_flash, -1); // All 1's in TEST_P()
1288 std::vector<char> buf(max_flash, 0); // All 0's in TEST_P()
1336 std::vector<char> buf = RandomBuf(max_flash / 2); in TEST_P()
Dfixtures.cpp339 max_flash = std::min(part_size, max_dl); in SetUp()