Home
last modified time | relevance | path

Searched refs:CreateSessionId (Results 1 – 8 of 8) sorted by relevance

/external/libweave/src/privet/
Dsecurity_delegate.h70 virtual std::string CreateSessionId() = 0;
Dmock_delegates.h95 MOCK_METHOD0(CreateSessionId, std::string());
141 EXPECT_CALL(*this, CreateSessionId()).WillRepeatedly(Return("SessionId")); in MockSecurityDelegate()
Dauth_manager.h71 std::string CreateSessionId() const;
Dsecurity_manager.h90 std::string CreateSessionId() override;
Dsecurity_manager.cc391 std::string SecurityManager::CreateSessionId() { in CreateSessionId() function in weave::privet::SecurityManager
392 return auth_manager_->CreateSessionId(); in CreateSessionId()
Dauth_manager_unittest.cc232 TEST_F(AuthManagerTest, CreateSessionId) { in TEST_F() argument
233 EXPECT_EQ("463315200:1", auth_.CreateSessionId()); in TEST_F()
Dauth_manager.cc535 std::string AuthManager::CreateSessionId() const { in CreateSessionId() function in weave::privet::AuthManager
561 SessionIdCaveat session{CreateSessionId()}; in DelegateToUser()
Dprivet_handler.cc566 output.SetString(kInfoSessionIdKey, security_->CreateSessionId()); in HandleInfo()