Home
last modified time | relevance | path

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

/system/connectivity/shill/net/
Dnetlink_packet_unittest.cc116 char string_piece[8]; in TEST_F() local
117 EXPECT_TRUE(packet.ConsumeData(2, &string_piece)); in TEST_F()
118 EXPECT_STREQ(kString1, string_piece); in TEST_F()
122 EXPECT_TRUE(packet.ConsumeData(8, &string_piece)); in TEST_F()
123 EXPECT_STREQ(kString2, string_piece); in TEST_F()
127 EXPECT_TRUE(packet.ConsumeData(3, &string_piece)); in TEST_F()
128 EXPECT_STREQ(kString3, string_piece); in TEST_F()
132 EXPECT_FALSE(packet.ConsumeData(7, &string_piece)); in TEST_F()
137 EXPECT_TRUE(packet.ConsumeData(6, &string_piece)); in TEST_F()
138 EXPECT_STREQ(kString4, string_piece); in TEST_F()
/system/bt/build/secondary/third_party/libchrome/
DBUILD.gn122 "base/strings/string_piece.cc",