Home | History | Annotate | Download | only in protocol

Lines Matching refs:authenticator_

113   authenticator_ = authenticator.Pass();
128 authenticator_->GetNextMessage()));
143 authenticator_ = authenticator.Pass();
163 DCHECK_EQ(authenticator_->state(), Authenticator::WAITING_MESSAGE);
164 // |authenticator_| is owned, so Unretained() is safe here.
165 authenticator_->ProcessMessage(first_auth_message, base::Bind(
171 DCHECK_NE(authenticator_->state(), Authenticator::PROCESSING_MESSAGE);
172 if (authenticator_->state() == Authenticator::REJECTED) {
174 authenticator_->rejection_reason()));
183 if (authenticator_->state() == Authenticator::MESSAGE_READY)
184 auth_message = authenticator_->GetNextMessage();
194 if (authenticator_->state() == Authenticator::ACCEPTED) {
197 DCHECK_EQ(authenticator_->state(), Authenticator::WAITING_MESSAGE);
198 if (authenticator_->started()) {
471 DCHECK(authenticator_->state() == Authenticator::WAITING_MESSAGE);
472 authenticator_->ProcessMessage(auth_message, base::Bind(
485 authenticator_->state() != Authenticator::WAITING_MESSAGE) {
495 authenticator_->ProcessMessage(message.info.get(), base::Bind(
573 DCHECK_NE(authenticator_->state(), Authenticator::PROCESSING_MESSAGE);
582 if (authenticator_->state() == Authenticator::MESSAGE_READY) {
584 message.info = authenticator_->GetNextMessage();
588 DCHECK_NE(authenticator_->state(), Authenticator::MESSAGE_READY);
599 if (authenticator_->started()) {
605 if (authenticator_->state() == Authenticator::ACCEPTED) {
607 } else if (authenticator_->state() == Authenticator::REJECTED) {
609 authenticator_->rejection_reason()));
617 authenticator_.get()));