Lines Matching refs:option

53   ByteString option;  in TEST_F()  local
55 int length = options_writer_->WriteUInt8Option(&option, in TEST_F()
59 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
72 ByteString option; in TEST_F() local
74 int length = options_writer_->WriteUInt16Option(&option, in TEST_F()
78 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
91 ByteString option; in TEST_F() local
93 int length = options_writer_->WriteUInt32Option(&option, in TEST_F()
97 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
110 ByteString option; in TEST_F() local
112 int length = options_writer_->WriteUInt8ListOption(&option, in TEST_F()
116 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
130 ByteString option; in TEST_F() local
132 int length = options_writer_->WriteUInt16ListOption(&option, in TEST_F()
136 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
151 ByteString option; in TEST_F() local
153 int length = options_writer_->WriteUInt32ListOption(&option, in TEST_F()
157 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
173 ByteString option; in TEST_F() local
176 options_writer_->WriteUInt32PairListOption(&option, in TEST_F()
180 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
192 ByteString option; in TEST_F() local
194 int length = options_writer_->WriteStringOption(&option, in TEST_F()
198 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
211 ByteString option; in TEST_F() local
213 int length = options_writer_->WriteBoolOption(&option, in TEST_F()
217 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
229 ByteString option; in TEST_F() local
231 int length = options_writer_->WriteBoolOption(&option, in TEST_F()
235 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
248 ByteString option; in TEST_F() local
250 int length = options_writer_->WriteByteArrayOption(&option, in TEST_F()
254 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
266 ByteString option; in TEST_F() local
268 int length = options_writer_->WriteStringOption(&option, in TEST_F()
272 EXPECT_NE(-1, options_writer_->WriteEndTag(&option)); in TEST_F()
273 EXPECT_EQ(0, std::memcmp(option.GetConstData(), in TEST_F()
276 EXPECT_EQ(kDHCPOptionEnd, *(option.GetConstData() + length)); in TEST_F()