HomeSort by relevance Sort by last modified time
    Searched defs:cloud_ (Results 1 - 3 of 3) sorted by null

  /external/libweave/src/privet/
privet_manager.h 83 std::unique_ptr<CloudDelegate> cloud_; member in class:weave::privet::Manager
publisher.cc 33 : dns_sd_{dns_sd}, device_{device}, cloud_{cloud}, wifi_{wifi} {
35 CHECK(cloud_); variable
51 std::string name{cloud_->GetName()};
52 std::string model_id{cloud_->GetModelId()};
63 {"id=" + cloud_->GetDeviceId()},
65 {"flags=" + WifiSsidGenerator{cloud_, wifi_}.GenerateFlags()},
68 if (!cloud_->GetCloudId().empty())
69 txt_record.emplace_back("gcd_id=" + cloud_->GetCloudId());
71 if (!cloud_->GetDescription().empty())
72 txt_record.emplace_back("note=" + cloud_->GetDescription())
    [all...]
privet_handler_unittest.cc 101 new PrivetHandler(&cloud_, &device_, &security_, &wifi_, &clock_));
133 new PrivetHandler(&cloud_, &device_, &security_, nullptr, &clock_));
134 EXPECT_CALL(cloud_, GetCloudId()).WillRepeatedly(Return(""));
135 EXPECT_CALL(cloud_, GetConnectionState())
141 EXPECT_CALL(cloud_, Setup(_, _, _))
146 testing::StrictMock<MockCloudDelegate> cloud_; member in class:weave::privet::PrivetHandlerTest
258 EXPECT_CALL(cloud_, GetDescription())
260 EXPECT_CALL(cloud_, GetLocation()).WillRepeatedly(Return("TestLocation"));
530 cloud_.setup_state_ = SetupState{SetupState::kSuccess};
544 cloud_.setup_state_ = SetupState{std::move(error)}
    [all...]

Completed in 529 milliseconds