Searched refs:bounds_test (Results 1 – 3 of 3) sorted by relevance
/system/bt/packet/tests/base/ |
D | iterator_test.cc | 91 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/ |
D | iterator_test.cc | 72 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/ |
D | packet_view_unittest.cc | 161 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()
|