Home | History | Annotate | Download | only in dbus

Lines Matching defs: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);
340 DBusInterface* itf1 = p_->dbus_object_.AddOrGetInterface(kTestInterface1);
348 p_->bool_prop_.SetValue(true);
496 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
515 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
516 p_->string_prop_.SetValidator(
531 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
532 p_->string_prop_.SetValidator(
540 ASSERT_EQ(kTestString, p_->string_prop_.value());
545 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
546 p_->string_prop_.SetValidator(
549 p_->string_prop_.SetValue(kTestString);
556 ASSERT_EQ(kTestString, p_->string_prop_.value());
560 p_->string_prop_.SetAccessMode(ExportedPropertyBase::Access::kReadWrite);
564 ASSERT_EQ(kTestString, p_->string_prop_.value());
599 p_->uint8_prop_.SetValue(57);