Searched defs:error_details (Results 1 - 21 of 21) sorted by relevance

/external/chromium/chrome/browser/policy/
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 Dpolicy_notifier.h36 ErrorDetails error_details,
43 CloudPolicySubsystem::ErrorDetails error_details() const { function in class:policy::PolicyNotifier
H A Dcloud_policy_subsystem.cc121 CloudPolicySubsystem::ErrorDetails CloudPolicySubsystem::error_details() { function in class:policy::CloudPolicySubsystem
122 return notifier_->error_details();
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
/external/chromium_org/net/quic/
H A Dquic_config_test.cc88 string error_details; local
89 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
121 string error_details; local
122 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
142 string error_details; local
143 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details);
152 string error_details; local
153 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
165 string error_details; local
166 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details);
179 string error_details; local
192 string error_details; local
[all...]
H A Dquic_crypto_server_stream.cc71 string error_details; local
74 message, result, &reply, &error_details);
77 CloseConnectionWithDetails(error, error_details);
88 error = config->ProcessClientHello(message, &error_details);
90 CloseConnectionWithDetails(error, error_details);
161 string* error_details) {
170 &crypto_negotiated_params_, reply, error_details);
157 ProcessClientHello( const CryptoHandshakeMessage& message, const ValidateClientHelloResultCallback::Result& result, CryptoHandshakeMessage* reply, string* error_details) argument
H A Dquic_config.cc53 string* error_details) const {
54 DCHECK(error_details != NULL);
59 *error_details = "Missing " + QuicUtils::TagToString(tag_);
68 *error_details = "Bad " + QuicUtils::TagToString(tag_);
76 string* error_details) {
78 DCHECK(error_details != NULL);
80 QuicErrorCode error = ReadUint32(client_hello, &value, error_details);
93 string* error_details) {
95 DCHECK(error_details != NULL);
97 QuicErrorCode error = ReadUint32(server_hello, &value, error_details);
74 ProcessClientHello( const CryptoHandshakeMessage& client_hello, string* error_details) argument
91 ProcessServerHello( const CryptoHandshakeMessage& server_hello, string* error_details) argument
172 ProcessClientHello( const CryptoHandshakeMessage& client_hello, string* error_details) argument
201 ProcessServerHello( const CryptoHandshakeMessage& server_hello, string* error_details) argument
349 ProcessClientHello( const CryptoHandshakeMessage& client_hello, string* error_details) argument
381 ProcessServerHello( const CryptoHandshakeMessage& server_hello, string* error_details) argument
[all...]
H A Dquic_crypto_client_stream.cc46 const string& error_details,
53 stream_->verify_error_details_ = error_details;
150 string error_details; local
207 &error_details);
212 CloseConnectionWithDetails(error, error_details);
257 &crypto_negotiated_params_, &error_details);
259 CloseConnectionWithDetails(error, error_details);
357 cached, &crypto_negotiated_params_, &error_details);
361 error, "Server hello invalid: " + error_details);
364 error = session()->config()->ProcessServerHello(*in, &error_details);
44 Run( bool ok, const string& error_details, scoped_ptr<ProofVerifyDetails>* details) argument
[all...]
H A Dquic_session_test.cc47 string error_details; variable
50 msg, &error_details);
H A Dquic_framer.cc1381 StringPiece error_details; local
1382 if (!reader_->ReadStringPiece16(&error_details)) {
1386 frame->error_details = error_details.as_string();
1406 StringPiece error_details; local
1407 if (!reader_->ReadStringPiece16(&error_details)) {
1411 frame->error_details = error_details.as_string();
1653 frame.rst_stream_frame->error_details.size();
1656 frame.connection_close_frame->error_details
[all...]
H A Dquic_protocol.h678 std::string error_details; member in struct:net::QuicRstStreamFrame
683 std::string error_details; member in struct:net::QuicConnectionCloseFrame
/external/chromium_org/net/quic/test_tools/
H A Dmock_crypto_client_stream.cc78 string error_details; local
80 session()->config()->ProcessClientHello(msg, &error_details);
/external/chromium/chrome/browser/chromeos/login/
H A Denterprise_enrollment_screen.cc152 policy::CloudPolicySubsystem::ErrorDetails error_details) {
181 << " details: " << error_details; local
150 OnPolicyStateChanged( policy::CloudPolicySubsystem::PolicySubsystemState state, policy::CloudPolicySubsystem::ErrorDetails error_details) argument
H A Dbackground_view.cc568 policy::CloudPolicySubsystem::ErrorDetails error_details) {
566 OnPolicyStateChanged( policy::CloudPolicySubsystem::PolicySubsystemState state, policy::CloudPolicySubsystem::ErrorDetails error_details) argument
/external/chromium_org/net/quic/crypto/
H A Dproof_test.cc39 string error_details, signature, first_signature;
54 &error_details, &cert_verify_result,
58 ASSERT_EQ("", error_details);
62 &error_details, &cert_verify_result,
66 ASSERT_NE("", error_details);
69 *certs, signature, &error_details,
73 ASSERT_NE("", error_details);
77 corrupt_signature, &error_details,
81 ASSERT_NE("", error_details);
88 &error_details,
101 TestProofVerifierCallback(TestCompletionCallback* comp_callback, bool* ok, std::string* error_details) argument
134 std::string error_details; local
[all...]
H A Dproof_verifier_chromium.cc49 std::string* error_details,
52 DCHECK(error_details);
57 error_details->clear();
61 *error_details = "Certificate is already set and VerifyProof has begun";
62 DLOG(WARNING) << *error_details;
69 *error_details = "Failed to create certificate chain. Certs are empty.";
70 DLOG(WARNING) << *error_details;
83 *error_details = "Failed to create certificate chain";
84 DLOG(WARNING) << *error_details;
93 *error_details
44 VerifyProof( 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.cc139 string error_details; local
143 &params_, &out_, &error_details);
147 << "Message failed with error " << error_details << ": "
153 EXPECT_TRUE(error_details.find(error_substr) != string::npos)
154 << error_substr << " not in " << error_details; local
H A Dquic_crypto_client_config.cc78 StringPiece server_config, QuicWallTime now, string* error_details) {
94 *error_details = "SCFG invalid";
100 *error_details = "SCFG missing EXPY";
105 *error_details = "SCFG has expired";
304 string* error_details) const {
305 DCHECK(error_details != NULL);
314 *error_details = "Handshake not ready";
320 *error_details = "SCFG missing SCID";
332 *error_details = "Missing AEAD or KEXS";
344 *error_details
77 SetServerConfig( StringPiece server_config, QuicWallTime now, string* error_details) argument
485 ProcessRejection( const CryptoHandshakeMessage& rej, QuicWallTime now, CachedState* cached, QuicCryptoNegotiatedParameters* out_params, string* error_details) argument
547 ProcessServerHello( const CryptoHandshakeMessage& server_hello, QuicGuid guid, const QuicVersionVector& negotiated_versions, CachedState* cached, QuicCryptoNegotiatedParameters* out_params, string* error_details) argument
[all...]
H A Dquic_crypto_server_config.cc81 string error_details; member in struct:net::ValidateClientHelloResultCallback::Result
98 void ValidationComplete(QuicErrorCode error_code, const char* error_details) { argument
100 result_->error_details = error_details;
437 result->error_details = "No configurations loaded";
465 string* error_details) const {
466 DCHECK(error_details);
486 *error_details = "Downgrade attack detected";
503 *error_details = "No configurations loaded";
526 *error_details
[all...]
/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler.cc203 CompileError* error_details) {
216 if (error_details) {
217 error_details->context = ""; // No meaningful intra-line context here.
218 error_details->line_number = mismatched_quotes_line;
219 error_details->error_code = CompileError::MISMATCHED_DOUBLE_QUOTES;
231 if (error_details) {
232 error_details->context = parser.GetLastContext();
233 error_details->line_number = parser.GetLastLineNumber();
234 error_details->error_code = CompileError::PARSING_ERROR;
241 if (error_details) {
200 Compile(const std::string& source_code, const std::string& hash_seed, std::string* output_bytecode, CompileError* error_details) argument
[all...]
/external/chromium_org/chrome/browser/translate/
H A Dtranslate_manager.cc627 TranslateErrorDetails error_details; local
628 error_details.time = base::Time::Now();
629 error_details.url = web_contents->GetLastCommittedURL();
630 error_details.error = details->error_type;
631 NotifyTranslateError(error_details);
694 TranslateErrorDetails error_details; local
695 error_details.time = base::Time::Now();
696 error_details.url = entry->GetURL();
697 error_details.error = TranslateErrors::NETWORK;
698 NotifyTranslateError(error_details);
[all...]

Completed in 905 milliseconds