Home
last modified time | relevance | path

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

/hardware/interfaces/bluetooth/1.0/default/test/
Dbluetooth_address_test.cc92 uint8_t addrB[BluetoothAddress::kBytes]; in TEST_F() local
99 EXPECT_TRUE(BluetoothAddress::string_to_bytes(kZeros, addrB)); in TEST_F()
100 EXPECT_TRUE(memcmp(addrB, kZeros_bytes, BluetoothAddress::kBytes) == 0); in TEST_F()
103 EXPECT_FALSE(memcmp(addrA, addrB, BluetoothAddress::kBytes) == 0); in TEST_F()
108 char addrB[BluetoothAddress::kStringLength + 1] = ""; in TEST_F() local
115 BluetoothAddress::bytes_to_string(kZeros_bytes, addrB); in TEST_F()
116 EXPECT_TRUE(memcmp(addrB, kZeros, BluetoothAddress::kStringLength) == 0); in TEST_F()
119 EXPECT_FALSE(memcmp(addrA, addrB, BluetoothAddress::kStringLength) == 0); in TEST_F()