HomeSort by relevance Sort by last modified time
    Searched refs:REJECTED (Results 1 - 25 of 44) sorted by null

1 2

  /external/nist-sip/java/javax/sip/header/
SubscriptionStateHeader.java 13 String REJECTED = "Rejected";
  /external/chromium_org/remoting/protocol/
third_party_authenticator_base.cc 50 DCHECK_EQ(state(), REJECTED);
52 if (token_state_ == REJECTED)
third_party_client_authenticator.cc 39 token_state_ = REJECTED;
71 token_state_ = REJECTED;
authenticator.h 46 // WAITING_MESSAGE -> REJECTED
63 // Session is rejected.
64 REJECTED,
97 // Returns rejection reason. Can be called only when in REJECTED state.
130 // rejected. ProcessMessage() should be called with |first_message|
third_party_host_authenticator.cc 40 token_state_ = REJECTED;
81 token_state_ = REJECTED;
v2_authenticator_unittest.cc 81 // Verify that connection is rejected when secrets don't match.
87 ASSERT_EQ(Authenticator::REJECTED, client_->state());
99 ASSERT_EQ(Authenticator::REJECTED, host_->state());
third_party_authenticator_unittest.cc 165 // The end result is that the client rejected the connection, since it
167 ASSERT_EQ(Authenticator::REJECTED, client_->state());
179 // The end result is that the host rejected the token.
180 ASSERT_EQ(Authenticator::REJECTED, host_->state());
190 // The end result is that the client rejected the connection, since it
192 ASSERT_EQ(Authenticator::REJECTED, client_->state());
195 // Test that negotiation stops when the fake authentication is rejected.
206 // The end result is that the host rejected the fake authentication.
207 ASSERT_EQ(Authenticator::REJECTED, client_->state());
220 // The end result is that the host rejected the fake authentication
    [all...]
v2_authenticator.cc 84 DCHECK_EQ(state(), REJECTED);
109 state_ = REJECTED;
117 state_ = REJECTED;
128 state_ = REJECTED;
142 state_ = REJECTED;
fake_authenticator.cc 102 return REJECTED;
112 return REJECTED;
129 EXPECT_EQ(REJECTED, state());
negotiating_host_authenticator.cc 77 state_ = REJECTED;
94 state_ = REJECTED;
119 state_ = REJECTED;
me2me_host_authenticator_factory.cc 38 DCHECK_EQ(state_, REJECTED);
45 state_ = REJECTED;
negotiating_authenticator_unittest.cc 107 ASSERT_TRUE(client_->state() == Authenticator::REJECTED ||
108 host_->state() == Authenticator::REJECTED);
109 if (client_->state() == Authenticator::REJECTED) {
112 if (host_->state() == Authenticator::REJECTED) {
negotiating_authenticator_base.cc 78 if (state_ == REJECTED)
pairing_host_authenticator.cc 37 return REJECTED;
pairing_authenticator_base.cc 128 if (v2_authenticator_->state() == REJECTED &&
  /external/chromium_org/chrome/browser/ui/
auto_login_infobar_delegate.h 45 REJECTED, // The user pressed the reject button.
auto_login_infobar_delegate.cc 231 RecordHistogramAction(REJECTED);
  /external/chromium_org/chrome/installer/util/
html_dialog.h 79 REJECTED, // Declined EULA, mapped from HTML_DLG_ACCEPT (1).
85 // the |Outcome| values and any form of failure maps to REJECTED.
html_dialog_impl.cc 193 return EulaHTMLDialog::REJECTED;
  /external/chromium_org/chromeos/dbus/
bluetooth_profile_service_provider.h 41 // reject indicates the user rejected or denied the request; cancelled
45 REJECTED,
63 // (success, rejected or cancelled).
bluetooth_agent_service_provider.h 40 // granted; rejected indicates the user rejected the request or denied
45 REJECTED,
51 // rejected or cancelled) and the |pincode| requested.
56 // rejected or cancelled) and the |passkey| requested, a numeric in the
62 // of the request (success, rejected or cancelled).
127 // rejected or cancelled).
143 // |callback| to provide their response (success, rejected or cancelled).
151 // (success, rejected or cancelled).
bluetooth_agent_service_provider.cc 349 case Delegate::REJECTED: {
352 method_call, bluetooth_agent::kErrorRejected, "rejected")
384 case Delegate::REJECTED: {
387 method_call, bluetooth_agent::kErrorRejected, "rejected")
414 case Delegate::REJECTED: {
417 method_call, bluetooth_agent::kErrorRejected, "rejected")
  /external/chromium_org/media/cdm/
aes_decryptor_unittest.cc 198 enum PromiseResult { RESOLVED, REJECTED };
238 EXPECT_EQ(expected, REJECTED);
456 UpdateSessionAndExpect(session_id, kWrongSizedKeyAsJWK, REJECTED);
672 UpdateSessionAndExpect(session_id, kJwkSimple, REJECTED);
701 session_id, "This is not ASCII due to \xff\xfe\xfd in it.", REJECTED);
706 UpdateSessionAndExpect(session_id, "This is not a JSON key.", REJECTED);
709 UpdateSessionAndExpect(session_id, "40", REJECTED);
712 UpdateSessionAndExpect(session_id, "{ }", REJECTED);
715 UpdateSessionAndExpect(session_id, "{ \"keys\": [] }", REJECTED);
718 UpdateSessionAndExpect(session_id, "{ \"keys\":\"1\" }", REJECTED);
    [all...]
  /frameworks/base/telecomm/java/android/telecom/
DisconnectCause.java 52 /** Disconnected because the user rejected an incoming call. */
53 public static final int REJECTED = 6;
237 case REJECTED:
238 code = "REJECTED";
  /external/chromium_org/chrome/browser/ui/android/infobars/
auto_login_infobar_delegate_android.cc 82 RecordHistogramAction(REJECTED);

Completed in 355 milliseconds

1 2