Home
last modified time | relevance | path

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

/system/bt/packet/tests/base/
Diterator_test.cc91 Iterator bounds_test = packet->end(); in TEST_P() local
92 ASSERT_DEATH(bounds_test.extract<uint8_t>(), in TEST_P()
94 ASSERT_DEATH(bounds_test.extract<uint16_t>(), in TEST_P()
96 ASSERT_DEATH(bounds_test.extract<uint32_t>(), in TEST_P()
98 ASSERT_DEATH(bounds_test.extract<uint64_t>(), in TEST_P()
104 Iterator bounds_test = packet->end(); in TEST_P() local
105 ASSERT_DEATH(bounds_test.extractBE<uint8_t>(), in TEST_P()
107 ASSERT_DEATH(bounds_test.extractBE<uint16_t>(), in TEST_P()
109 ASSERT_DEATH(bounds_test.extractBE<uint32_t>(), in TEST_P()
111 ASSERT_DEATH(bounds_test.extractBE<uint64_t>(), in TEST_P()
/system/bt/vendor_libs/test_vendor_lib/test/
Diterator_test.cc72 Iterator bounds_test = packet->get_end(); in TEST_F() local
74 ASSERT_DEATH(bounds_test.extract<uint8_t>(), ""); in TEST_F()
75 ASSERT_DEATH(bounds_test.extract<uint16_t>(), ""); in TEST_F()
76 ASSERT_DEATH(bounds_test.extract<uint32_t>(), ""); in TEST_F()
77 ASSERT_DEATH(bounds_test.extract<uint64_t>(), ""); in TEST_F()
/system/bt/gd/packet/
Dpacket_view_unittest.cc161 auto bounds_test = this->packet->end(); in TYPED_TEST() local
163 ASSERT_DEATH(bounds_test.template extract<uint8_t>(), ""); in TYPED_TEST()
164 ASSERT_DEATH(bounds_test.template extract<uint16_t>(), ""); in TYPED_TEST()
165 ASSERT_DEATH(bounds_test.template extract<uint32_t>(), ""); in TYPED_TEST()
166 ASSERT_DEATH(bounds_test.template extract<uint64_t>(), ""); in TYPED_TEST()