/external/chromium_org/net/quic/ |
D | quic_config.cc | 53 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 …]
|
D | quic_config_test.cc | 88 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 …]
|
D | quic_config.h | 65 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);
|
D | quic_crypto_client_stream.cc | 46 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 …]
|
D | quic_crypto_server_stream.cc | 71 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()
|
D | quic_framer.cc | 1381 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()
|
D | quic_crypto_server_stream.h | 46 std::string* error_details);
|
D | quic_crypto_client_stream.h | 62 const string& error_details,
|
/external/chromium_org/net/quic/crypto/ |
D | proof_test.cc | 39 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 …]
|
D | quic_crypto_client_config.cc | 78 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 …]
|
D | proof_verifier_chromium.cc | 49 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 …]
|
D | quic_crypto_client_config.h | 48 std::string* error_details); 153 std::string* error_details) const; 165 std::string* error_details); 180 std::string* error_details);
|
D | quic_crypto_server_config.cc | 81 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 …]
|
D | proof_verifier.h | 39 const std::string& error_details, 77 std::string* error_details,
|
D | crypto_server_test.cc | 139 string error_details; in ProcessValidationResult() local 143 ¶ms_, &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()
|
D | proof_verifier_chromium.h | 46 std::string* error_details,
|
/external/chromium_org/chrome/tools/profile_reset/ |
D | jtl_compiler.cc | 203 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/ |
D | policy_notifier.h | 36 ErrorDetails error_details, 43 CloudPolicySubsystem::ErrorDetails error_details() const { in error_details() function
|
D | cloud_policy_subsystem.h | 60 ErrorDetails error_details) = 0; 92 ErrorDetails error_details();
|
D | policy_notifier.cc | 30 ErrorDetails error_details, in Inform() argument 33 component_error_details_[source] = error_details; in Inform()
|
D | cloud_policy_subsystem.cc | 121 CloudPolicySubsystem::ErrorDetails CloudPolicySubsystem::error_details() { in error_details() function in policy::CloudPolicySubsystem 122 return notifier_->error_details(); in error_details()
|
D | cloud_policy_cache_base.cc | 180 CloudPolicySubsystem::ErrorDetails error_details) { in InformNotifier() argument 184 notifier_->Inform(state, error_details, PolicyNotifier::POLICY_CACHE); in InformNotifier()
|
/external/chromium_org/chrome/browser/translate/ |
D | translate_manager.cc | 627 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/ |
D | mock_crypto_client_stream.cc | 78 string error_details; in SetConfigNegotiated() local 80 session()->config()->ProcessClientHello(msg, &error_details); in SetConfigNegotiated()
|
/external/chromium/chrome/browser/chromeos/login/ |
D | enterprise_enrollment_screen.cc | 152 policy::CloudPolicySubsystem::ErrorDetails error_details) { in OnPolicyStateChanged() argument 181 << " details: " << error_details; in OnPolicyStateChanged()
|