Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp1965 size_t expected_info_size = 2 * sizeof(size_t) + 16 * sizeof(uintptr_t); in VerifyZygoteSet() local
1966 std::vector<uint8_t> expected_info(expected_info_size); in VerifyZygoteSet()
1967 memset(expected_info.data(), 0, expected_info_size); in VerifyZygoteSet()
1980 ASSERT_EQ(expected_info_size, overall_size); in VerifyZygoteSet()
1981 ASSERT_EQ(expected_info_size, info_size); in VerifyZygoteSet()
1984 ASSERT_TRUE(memcmp(info, expected_info.data(), expected_info_size) == 0) in VerifyZygoteSet()
1985 << ShowDiffs(info, expected_info.data(), expected_info_size); in VerifyZygoteSet()