Home
last modified time | relevance | path

Searched refs:error_details (Results 1 – 25 of 40) sorted by relevance

12

/external/chromium_org/net/quic/
Dquic_config.cc53 string* error_details) const { in ReadUint32()
54 DCHECK(error_details != NULL); in ReadUint32()
59 *error_details = "Missing " + QuicUtils::TagToString(tag_); in ReadUint32()
68 *error_details = "Bad " + QuicUtils::TagToString(tag_); in ReadUint32()
76 string* error_details) { in ProcessClientHello() argument
78 DCHECK(error_details != NULL); in ProcessClientHello()
80 QuicErrorCode error = ReadUint32(client_hello, &value, error_details); in ProcessClientHello()
93 string* error_details) { in ProcessServerHello() argument
95 DCHECK(error_details != NULL); in ProcessServerHello()
97 QuicErrorCode error = ReadUint32(server_hello, &value, error_details); in ProcessServerHello()
[all …]
Dquic_config_test.cc88 string error_details; in TEST_F() local
89 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details); in TEST_F()
121 string error_details; in TEST_F() local
122 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details); in TEST_F()
142 string error_details; in TEST_F() local
143 const QuicErrorCode error = config_.ProcessClientHello(msg, &error_details); in TEST_F()
152 string error_details; in TEST_F() local
153 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details); in TEST_F()
165 string error_details; in TEST_F() local
166 const QuicErrorCode error = config_.ProcessServerHello(msg, &error_details); in TEST_F()
[all …]
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;
186 std::string* error_details);
191 std::string* error_details);
Dquic_crypto_client_stream.cc46 const string& error_details, in Run() argument
53 stream_->verify_error_details_ = error_details; in Run()
150 string error_details; in DoHandshakeLoop() local
207 &error_details); in DoHandshakeLoop()
212 CloseConnectionWithDetails(error, error_details); in DoHandshakeLoop()
257 &crypto_negotiated_params_, &error_details); in DoHandshakeLoop()
259 CloseConnectionWithDetails(error, error_details); in DoHandshakeLoop()
357 cached, &crypto_negotiated_params_, &error_details); in DoHandshakeLoop()
361 error, "Server hello invalid: " + error_details); in DoHandshakeLoop()
364 error = session()->config()->ProcessServerHello(*in, &error_details); in DoHandshakeLoop()
[all …]
Dquic_crypto_server_stream.cc71 string error_details; in FinishProcessingHandshakeMessage() local
74 message, result, &reply, &error_details); in FinishProcessingHandshakeMessage()
77 CloseConnectionWithDetails(error, error_details); in FinishProcessingHandshakeMessage()
88 error = config->ProcessClientHello(message, &error_details); in FinishProcessingHandshakeMessage()
90 CloseConnectionWithDetails(error, error_details); in FinishProcessingHandshakeMessage()
161 string* error_details) { in ProcessClientHello() argument
170 &crypto_negotiated_params_, reply, error_details); in ProcessClientHello()
Dquic_framer.cc1381 StringPiece error_details; in ProcessRstStreamFrame() local
1382 if (!reader_->ReadStringPiece16(&error_details)) { in ProcessRstStreamFrame()
1386 frame->error_details = error_details.as_string(); in ProcessRstStreamFrame()
1406 StringPiece error_details; in ProcessConnectionCloseFrame() local
1407 if (!reader_->ReadStringPiece16(&error_details)) { in ProcessConnectionCloseFrame()
1411 frame->error_details = error_details.as_string(); in ProcessConnectionCloseFrame()
1653 frame.rst_stream_frame->error_details.size(); in ComputeFrameLength()
1656 frame.connection_close_frame->error_details.size(); in ComputeFrameLength()
2037 if (!writer->WriteStringPiece16(frame.error_details)) { in AppendRstStreamFramePayload()
2050 if (!writer->WriteStringPiece16(frame.error_details)) { in AppendConnectionCloseFramePayload()
Dquic_crypto_server_stream.h46 std::string* error_details);
Dquic_crypto_client_stream.h62 const string& error_details,
/external/chromium_org/net/quic/crypto/
Dproof_test.cc39 string error_details, signature, first_signature; in TEST()
54 &error_details, &cert_verify_result, in TEST()
58 ASSERT_EQ("", error_details); in TEST()
62 &error_details, &cert_verify_result, in TEST()
66 ASSERT_NE("", error_details); in TEST()
69 *certs, signature, &error_details, in TEST()
73 ASSERT_NE("", error_details); in TEST()
77 corrupt_signature, &error_details, in TEST()
81 ASSERT_NE("", error_details); in TEST()
88 &error_details, &cert_verify_result, in TEST()
[all …]
Dquic_crypto_client_config.cc78 StringPiece server_config, QuicWallTime now, string* error_details) { in SetServerConfig() argument
94 *error_details = "SCFG invalid"; in SetServerConfig()
100 *error_details = "SCFG missing EXPY"; in SetServerConfig()
105 *error_details = "SCFG has expired"; in SetServerConfig()
304 string* error_details) const { in FillClientHello()
305 DCHECK(error_details != NULL); in FillClientHello()
314 *error_details = "Handshake not ready"; in FillClientHello()
320 *error_details = "SCFG missing SCID"; in FillClientHello()
332 *error_details = "Missing AEAD or KEXS"; in FillClientHello()
344 *error_details = "Unsupported AEAD or KEXS"; in FillClientHello()
[all …]
Dproof_verifier_chromium.cc49 std::string* error_details, in VerifyProof() argument
52 DCHECK(error_details); in VerifyProof()
57 error_details->clear(); in VerifyProof()
61 *error_details = "Certificate is already set and VerifyProof has begun"; in VerifyProof()
62 DLOG(WARNING) << *error_details; in VerifyProof()
69 *error_details = "Failed to create certificate chain. Certs are empty."; in VerifyProof()
70 DLOG(WARNING) << *error_details; in VerifyProof()
83 *error_details = "Failed to create certificate chain"; in VerifyProof()
84 DLOG(WARNING) << *error_details; in VerifyProof()
93 *error_details = "Failed to verify signature of server config"; in VerifyProof()
[all …]
Dquic_crypto_client_config.h48 std::string* error_details);
153 std::string* error_details) const;
165 std::string* error_details);
180 std::string* error_details);
Dquic_crypto_server_config.cc81 string error_details; member
98 void ValidationComplete(QuicErrorCode error_code, const char* error_details) { in ValidationComplete() argument
100 result_->error_details = error_details; in ValidationComplete()
437 result->error_details = "No configurations loaded"; in ValidateClientHello()
465 string* error_details) const { in ProcessClientHello()
466 DCHECK(error_details); in ProcessClientHello()
486 *error_details = "Downgrade attack detected"; in ProcessClientHello()
503 *error_details = "No configurations loaded"; in ProcessClientHello()
526 *error_details = validate_chlo_result.error_details; in ProcessClientHello()
549 *error_details = "Missing or invalid AEAD or KEXS"; in ProcessClientHello()
[all …]
Dproof_verifier.h39 const std::string& error_details,
77 std::string* error_details,
Dcrypto_server_test.cc139 string error_details; in ProcessValidationResult() local
143 &params_, &out_, &error_details); in ProcessValidationResult()
147 << "Message failed with error " << error_details << ": " in ProcessValidationResult()
153 EXPECT_TRUE(error_details.find(error_substr) != string::npos) in ProcessValidationResult()
154 << error_substr << " not in " << error_details; in ProcessValidationResult()
Dproof_verifier_chromium.h46 std::string* error_details,
/external/chromium_org/chrome/tools/profile_reset/
Djtl_compiler.cc203 CompileError* error_details) { in Compile() argument
216 if (error_details) { in Compile()
217 error_details->context = ""; // No meaningful intra-line context here. in Compile()
218 error_details->line_number = mismatched_quotes_line; in Compile()
219 error_details->error_code = CompileError::MISMATCHED_DOUBLE_QUOTES; in Compile()
231 if (error_details) { in Compile()
232 error_details->context = parser.GetLastContext(); in Compile()
233 error_details->line_number = parser.GetLastLineNumber(); in Compile()
234 error_details->error_code = CompileError::PARSING_ERROR; in Compile()
241 if (error_details) { in Compile()
[all …]
/external/chromium/chrome/browser/policy/
Dpolicy_notifier.h36 ErrorDetails error_details,
43 CloudPolicySubsystem::ErrorDetails error_details() const { in error_details() function
Dcloud_policy_subsystem.h60 ErrorDetails error_details) = 0;
92 ErrorDetails error_details();
Dpolicy_notifier.cc30 ErrorDetails error_details, in Inform() argument
33 component_error_details_[source] = error_details; in Inform()
Dcloud_policy_subsystem.cc121 CloudPolicySubsystem::ErrorDetails CloudPolicySubsystem::error_details() { in error_details() function in policy::CloudPolicySubsystem
122 return notifier_->error_details(); in error_details()
Dcloud_policy_cache_base.cc180 CloudPolicySubsystem::ErrorDetails error_details) { in InformNotifier() argument
184 notifier_->Inform(state, error_details, PolicyNotifier::POLICY_CACHE); in InformNotifier()
/external/chromium_org/chrome/browser/translate/
Dtranslate_manager.cc627 TranslateErrorDetails error_details; in PageTranslated() local
628 error_details.time = base::Time::Now(); in PageTranslated()
629 error_details.url = web_contents->GetLastCommittedURL(); in PageTranslated()
630 error_details.error = details->error_type; in PageTranslated()
631 NotifyTranslateError(error_details); in PageTranslated()
694 TranslateErrorDetails error_details; in OnTranslateScriptFetchComplete() local
695 error_details.time = base::Time::Now(); in OnTranslateScriptFetchComplete()
696 error_details.url = entry->GetURL(); in OnTranslateScriptFetchComplete()
697 error_details.error = TranslateErrors::NETWORK; in OnTranslateScriptFetchComplete()
698 NotifyTranslateError(error_details); in OnTranslateScriptFetchComplete()
/external/chromium_org/net/quic/test_tools/
Dmock_crypto_client_stream.cc78 string error_details; in SetConfigNegotiated() local
80 session()->config()->ProcessClientHello(msg, &error_details); in SetConfigNegotiated()
/external/chromium/chrome/browser/chromeos/login/
Denterprise_enrollment_screen.cc152 policy::CloudPolicySubsystem::ErrorDetails error_details) { in OnPolicyStateChanged() argument
181 << " details: " << error_details; in OnPolicyStateChanged()

12