Searched refs:error_details (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/net/quic/
H A Dquic_config.cc50 string* error_details) const {
51 DCHECK(error_details != NULL);
56 *error_details = "Missing " + QuicUtils::TagToString(tag_);
65 *error_details = "Bad " + QuicUtils::TagToString(tag_);
73 string* error_details) {
75 DCHECK(error_details != NULL);
77 QuicErrorCode error = ReadUint32(client_hello, &value, error_details);
90 string* error_details) {
92 DCHECK(error_details != NULL);
94 QuicErrorCode error = ReadUint32(server_hello, &value, error_details);
71 ProcessClientHello( const CryptoHandshakeMessage& client_hello, string* error_details) argument
88 ProcessServerHello( const CryptoHandshakeMessage& server_hello, string* error_details) argument
167 ProcessClientHello( const CryptoHandshakeMessage& client_hello, string* error_details) argument
196 ProcessServerHello( const CryptoHandshakeMessage& server_hello, string* error_details) argument
306 ProcessClientHello( const CryptoHandshakeMessage& client_hello, string* error_details) argument
330 ProcessServerHello( const CryptoHandshakeMessage& server_hello, string* error_details) argument
[all...]
H A Dquic_config.h65 std::string* error_details);
72 std::string* error_details);
80 std::string* error_details) const;
110 std::string* error_details);
116 std::string* error_details);
125 std::string* error_details) const;
172 // the corresponding QuicErrorCode and sets detailed error in |error_details|.
174 std::string* error_details);
177 // the corresponding QuicErrorCode and sets detailed error in |error_details|.
179 std::string* error_details);
[all...]
H A Dquic_crypto_server_stream.cc41 string error_details; local
44 QuicErrorCode error = ProcessClientHello(message, &reply, &error_details);
47 CloseConnectionWithDetails(error, error_details);
58 error = config->ProcessClientHello(message, &error_details);
60 CloseConnectionWithDetails(error, error_details);
129 string* error_details) {
137 &crypto_negotiated_params_, reply, error_details);
126 ProcessClientHello( const CryptoHandshakeMessage& message, CryptoHandshakeMessage* reply, string* error_details) argument
H A Dquic_config_test.cc65 string error_details; local
66 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
91 string error_details; local
92 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
108 string error_details; local
109 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
118 string error_details; local
119 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
131 string error_details; local
132 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
145 string error_details; local
158 string error_details; local
[all...]
H A Dquic_crypto_client_stream.cc46 const string& error_details,
53 stream_->verify_error_details_ = error_details;
148 string error_details; local
186 &error_details);
191 CloseConnectionWithDetails(error, error_details);
236 &crypto_negotiated_params_, &error_details);
238 CloseConnectionWithDetails(error, error_details);
336 &error_details);
339 error, "Server hello invalid: " + error_details);
342 error = session()->config()->ProcessServerHello(*in, &error_details);
44 Run( bool ok, const string& error_details, scoped_ptr<ProofVerifyDetails>* details) argument
[all...]
H A Dquic_crypto_server_stream.h44 std::string* error_details);
H A Dquic_crypto_client_stream.h62 const string& error_details,
/external/chromium/chrome/browser/policy/
H A Dpolicy_notifier.h36 ErrorDetails error_details,
43 CloudPolicySubsystem::ErrorDetails error_details() const { function in class:policy::PolicyNotifier
H A Dcloud_policy_subsystem.h60 ErrorDetails error_details) = 0;
92 ErrorDetails error_details();
H A Dpolicy_notifier.cc30 ErrorDetails error_details,
33 component_error_details_[source] = error_details;
29 Inform(PolicySubsystemState state, ErrorDetails error_details, StatusSource source) argument
H A Dcloud_policy_cache_base.cc180 CloudPolicySubsystem::ErrorDetails error_details) {
184 notifier_->Inform(state, error_details, PolicyNotifier::POLICY_CACHE);
178 InformNotifier( CloudPolicySubsystem::PolicySubsystemState state, CloudPolicySubsystem::ErrorDetails error_details) argument
H A Dcloud_policy_subsystem.cc121 CloudPolicySubsystem::ErrorDetails CloudPolicySubsystem::error_details() { function in class:policy::CloudPolicySubsystem
122 return notifier_->error_details();
/external/chromium_org/net/quic/crypto/
H A Dproof_verifier.h35 // and |*error_details| is unused. Otherwise, |*error_details| contains a
40 const std::string& error_details,
62 // SUCCESS. On failure, it returns ERROR and sets |*error_details| to a
82 std::string* error_details,
H A Dproof_verifier_chromium.cc50 std::string* error_details,
53 DCHECK(error_details);
58 error_details->clear();
62 *error_details = "Certificate is already set and VerifyProof has begun";
63 DLOG(WARNING) << *error_details;
70 *error_details = "Failed to create certificate chain. Certs are empty.";
71 DLOG(WARNING) << *error_details;
84 *error_details = "Failed to create certificate chain";
85 DLOG(WARNING) << *error_details;
94 *error_details
44 VerifyProof( QuicVersion version, const string& hostname, const string& server_config, const vector<string>& certs, const string& signature, std::string* error_details, scoped_ptr<ProofVerifyDetails>* details, ProofVerifierCallback* callback) argument
[all...]
H A Dcrypto_server_test.cc73 string error_details; local
76 &clock_, rand_, &params_, &out_, &error_details);
79 << "Message failed with error " << error_details << ": "
85 string error_details; local
88 &clock_, rand_, &params_, &out_, &error_details);
93 EXPECT_TRUE(error_details.find(error_substr) != string::npos)
94 << error_substr << " not in " << error_details; local
H A Dcrypto_handshake.cc404 StringPiece server_config, QuicWallTime now, string* error_details) {
420 *error_details = "SCFG invalid";
426 *error_details = "SCFG missing EXPY";
431 *error_details = "SCFG has expired";
620 string* error_details) const {
621 DCHECK(error_details != NULL);
629 *error_details = "Handshake not ready";
635 *error_details = "SCFG missing SCID";
647 *error_details = "Missing AEAD or KEXS";
659 *error_details
403 SetServerConfig( StringPiece server_config, QuicWallTime now, string* error_details) argument
790 ProcessRejection( CachedState* cached, const CryptoHandshakeMessage& rej, QuicWallTime now, QuicCryptoNegotiatedParameters* out_params, string* error_details) argument
840 ProcessServerHello( const CryptoHandshakeMessage& server_hello, QuicGuid guid, QuicCryptoNegotiatedParameters* out_params, string* error_details) argument
[all...]
H A Dproof_test.cc53 string error_details, signature, first_signature;
69 signature, &error_details, &cert_verify_result,
73 ASSERT_EQ("", error_details);
77 signature, &error_details, &cert_verify_result,
81 ASSERT_NE("", error_details);
85 *certs, signature, &error_details,
89 ASSERT_NE("", error_details);
93 corrupt_signature, &error_details,
97 ASSERT_NE("", error_details);
104 signature, &error_details,
117 TestProofVerifierCallback(TestCompletionCallback* comp_callback, bool* ok, std::string* error_details) argument
151 std::string error_details; local
288 string error_details; local
388 string error_details; local
[all...]
H A Dcrypto_handshake.h260 std::string* error_details);
348 std::string* error_details) const;
360 std::string* error_details);
365 // |error_details| and returns an error code.
369 std::string* error_details);
H A Dproof_verifier_chromium.h47 std::string* error_details,
H A Dcrypto_server_config.cc314 string* error_details) const {
315 DCHECK(error_details);
327 *error_details = "No configurations loaded";
351 client_hello, primary_config->orbit, &info, error_details);
376 *error_details = "Missing or invalid AEAD or KEXS";
388 *error_details = "Unsupported AEAD or KEXS";
394 *error_details = "Missing public value";
402 *error_details = "Invalid public value";
447 *error_details = "CETV decryption failure";
454 *error_details
[all...]
H A Dcrypto_server_config.h130 // error_details: used to store a string describing any error.
139 std::string* error_details) const;
261 std::string* error_details) const;
/external/chromium_org/net/quic/test_tools/
H A Dmock_crypto_client_stream.cc68 string error_details; local
70 session()->config()->ProcessClientHello(msg, &error_details);
/external/chromium_org/chrome/browser/translate/
H A Dtranslate_manager.cc621 TranslateErrorDetails error_details; local
622 error_details.time = base::Time::Now();
623 error_details.url = web_contents->GetLastCommittedURL();
624 error_details.error = details->error_type;
625 NotifyTranslateError(error_details);
684 TranslateErrorDetails error_details; local
685 error_details.time = base::Time::Now();
686 error_details.url = entry->GetURL();
687 error_details.error = TranslateErrors::NETWORK;
688 NotifyTranslateError(error_details);
[all...]
/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_state_notifier.cc164 if (network && !network->error_details().empty()) {
167 UTF8ToUTF16(name), error, UTF8ToUTF16(network->error_details()));
/external/chromium/chrome/browser/chromeos/login/
H A Denterprise_enrollment_screen.h77 policy::CloudPolicySubsystem::ErrorDetails error_details) OVERRIDE;

Completed in 1214 milliseconds

12