Home | History | Annotate | Download | only in dbus

Lines Matching refs:p_

126     p_.reset(new Properties(bus_, kMethodsExportedOnPath));
135 auto response = testing::CallMethod(p_->dbus_object_, method_call);
148 return testing::CallMethod(p_->dbus_object_, &method_call);
162 return testing::CallMethod(p_->dbus_object_, &method_call);
168 std::unique_ptr<Properties> p_;
197 p_->bool_prop_.SetValue(true);
198 p_->uint8_prop_.SetValue(1);
199 p_->int16_prop_.SetValue(1);
200 p_->uint16_prop_.SetValue(1);
201 p_->int32_prop_.SetValue(1);
202 p_->uint32_prop_.SetValue(1);
203 p_->int64_prop_.SetValue(1);
204 p_->uint64_prop_.SetValue(1);
205 p_->double_prop_.SetValue(1.0);
206 p_->string_prop_.SetValue(kTestString);
207 p_->path_prop_.SetValue(kTestObjectPathUpdate);
208 p_->stringlist_prop_.SetValue({kTestString});
209 p_->pathlist_prop_.SetValue({kTestObjectPathUpdate});
210 p_->uint8list_prop_.SetValue({1});
215 p_->bool_prop_.SetValue(true);
216 p_->bool_prop_.SetValue(true);
231 auto response = testing::CallMethod(p_->dbus_object_, &method_call);
257 auto response = testing::CallMethod(p_->dbus_object_, &method_call);
484 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
503 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
504 p_->string_prop_.SetValidator(
519 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
520 p_->string_prop_.SetValidator(
528 ASSERT_EQ(kTestString, p_->string_prop_.value());
533 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
534 p_->string_prop_.SetValidator(
537 p_->string_prop_.SetValue(kTestString);
544 ASSERT_EQ(kTestString, p_->string_prop_.value());
548 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
552 ASSERT_EQ(kTestString, p_->string_prop_.value());
587 p_->uint8_prop_.SetValue(57);