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

1 2 3

  /external/chromium_org/content/child/webcrypto/test/
status_unittest.cc 38 EXPECT_EQ("", status.error_details());
42 EXPECT_EQ("", status.error_details());
47 EXPECT_EQ("", status.error_details());
52 EXPECT_EQ("The requested operation is unsupported", status.error_details());
58 status.error_details());
64 status.error_details());
70 status.error_details());
  /external/chromium_org/net/quic/crypto/
proof_verifier.h 44 // and |error_details| is unused. Otherwise, |error_details| contains a
49 const std::string& error_details,
62 // QUIC_SUCCESS. On failure, it returns QUIC_FAILURE and sets |*error_details|
81 std::string* error_details,
proof_verifier_chromium.cc 58 std::string* error_details,
120 std::string* error_details,
123 DCHECK(error_details);
127 error_details->clear();
130 *error_details = "Certificate is already set and VerifyProof has begun";
131 DLOG(DFATAL) << *error_details;
138 *error_details = "Failed to create certificate chain. Certs are empty.";
139 DLOG(WARNING) << *error_details;
152 *error_details = "Failed to create certificate chain";
153 DLOG(WARNING) << *error_details;
    [all...]
quic_crypto_client_config.cc 125 StringPiece server_config, QuicWallTime now, string* error_details) {
141 *error_details = "SCFG invalid";
147 *error_details = "SCFG missing EXPY";
152 *error_details = "SCFG has expired";
232 string error_details; local
234 &error_details);
236 DVLOG(1) << "SetServerConfig failed with " << error_details;
400 string* error_details) const {
401 DCHECK(error_details != NULL);
410 *error_details = "Handshake not ready"
    [all...]
quic_crypto_client_config.h 59 std::string* error_details);
182 std::string* error_details) const;
196 std::string* error_details);
201 // then it puts an error message in |error_details| and returns an error
211 std::string* error_details);
215 // If |server_update| is invalid then |error_details| will contain an error
223 std::string* error_details);
281 std::string* error_details);
proof_verifier_chromium.h 68 std::string* error_details,
quic_crypto_server_config.cc 104 string error_details; member in struct:net::ValidateClientHelloResultCallback::Result
119 void ValidationComplete(QuicErrorCode error_code, const char* error_details) {
121 result_->error_details = error_details;
505 result->error_details = "No configurations loaded";
537 string* error_details) const {
538 DCHECK(error_details);
550 *error_details = "client hello missing version list";
560 *error_details = "Downgrade attack detected";
576 *error_details = "No configurations loaded"
    [all...]
  /external/chromium_org/net/quic/
quic_config.cc 28 string* error_details) {
29 DCHECK(error_details != NULL);
34 *error_details = "Missing " + QuicUtils::TagToString(tag);
43 *error_details = "Bad " + QuicUtils::TagToString(tag);
97 string* error_details) {
99 DCHECK(error_details != NULL);
106 error_details);
111 *error_details =
157 string* error_details) const {
158 DCHECK(error_details != NULL)
    [all...]
quic_config_test.cc 104 string error_details; local
106 config_.ProcessPeerHello(msg, CLIENT, &error_details);
155 string error_details; local
157 config_.ProcessPeerHello(msg, SERVER, &error_details);
192 string error_details; local
194 config_.ProcessPeerHello(msg, CLIENT, &error_details);
209 string error_details; local
211 config_.ProcessPeerHello(msg, SERVER, &error_details);
222 string error_details; local
224 config_.ProcessPeerHello(msg, CLIENT, &error_details);
233 string error_details; local
247 string error_details; local
262 string error_details; local
276 string error_details; local
    [all...]
quic_config.h 54 std::string* error_details) = 0;
101 std::string* error_details) OVERRIDE;
134 std::string* error_details) OVERRIDE;
143 std::string* error_details) const;
175 std::string* error_details) OVERRIDE;
209 std::string* error_details) OVERRIDE;
245 std::string* error_details) OVERRIDE;
366 // the corresponding QuicErrorCode and sets detailed error in |error_details|.
369 std::string* error_details);
quic_crypto_client_stream.cc 52 const string& error_details,
59 stream_->verify_error_details_ = error_details;
145 string error_details; local
153 &error_details);
157 error, "Server config update invalid: " + error_details);
180 string error_details; local
248 &error_details);
253 CloseConnectionWithDetails(error, error_details);
297 server_id_.is_https(), &crypto_negotiated_params_, &error_details);
299 CloseConnectionWithDetails(error, error_details);
    [all...]
quic_crypto_server_stream.cc 88 string error_details; local
91 message, result, &reply, &error_details);
94 CloseConnectionWithDetails(error, error_details);
106 error = config->ProcessPeerHello(message, CLIENT, &error_details);
108 CloseConnectionWithDetails(error, error_details);
224 string* error_details) {
233 &crypto_negotiated_params_, reply, error_details);
quic_crypto_server_stream.h 89 std::string* error_details);
quic_crypto_client_stream.h 85 const string& error_details,
  /external/chromium_org/base/files/
file.cc 44 File::File(Error error_details)
45 : error_details_(error_details),
52 error_details_(other.object->error_details()),
66 error_details_ = other.object->error_details();
file.h 167 // Creates an object with a specific error_details code.
168 explicit File(Error error_details);
197 Error error_details() const { return error_details_; } function in class:base::File
file_unittest.cc 23 EXPECT_EQ(base::File::FILE_ERROR_FAILED, file.error_details());
27 EXPECT_EQ(base::File::FILE_ERROR_TOO_MANY_OPENED, file2.error_details());
34 EXPECT_EQ(base::File::FILE_ERROR_NOT_FOUND, file.error_details());
42 EXPECT_EQ(base::File::FILE_OK, file.error_details());
50 EXPECT_EQ(base::File::FILE_OK, file.error_details());
63 EXPECT_EQ(base::File::FILE_OK, file.error_details());
75 EXPECT_EQ(base::File::FILE_ERROR_EXISTS, file.error_details());
84 EXPECT_EQ(base::File::FILE_OK, file.error_details());
95 EXPECT_EQ(base::File::FILE_OK, file.error_details());
130 EXPECT_EQ(base::File::FILE_OK, file.error_details());
    [all...]
  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler.cc 204 CompileError* error_details) {
217 if (error_details) {
218 error_details->context = ""; // No meaningful intra-line context here.
219 error_details->line_number = mismatched_quotes_line;
220 error_details->error_code = CompileError::MISMATCHED_DOUBLE_QUOTES;
232 if (error_details) {
233 error_details->context = parser.GetLastContext();
234 error_details->line_number = parser.GetLastLineNumber();
235 error_details->error_code = CompileError::PARSING_ERROR;
242 if (error_details) {
    [all...]
  /external/chromium_org/components/translate/core/browser/
translate_manager.cc 311 TranslateErrorDetails error_details; local
312 error_details.time = base::Time::Now();
313 error_details.url = translate_driver_->GetLastCommittedURL();
314 error_details.error = error_type;
315 NotifyTranslateError(error_details);
341 TranslateErrorDetails error_details; local
342 error_details.time = base::Time::Now();
343 error_details.url = translate_driver_->GetActiveURL();
344 error_details.error = TranslateErrors::NETWORK;
345 NotifyTranslateError(error_details);
    [all...]
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils_chromium.cc 85 std::string* error_details,
88 error_details->clear();
93 *error_details = "Invalid proof";
mock_crypto_client_stream.cc 98 string error_details; local
100 session()->config()->ProcessPeerHello(msg, CLIENT, &error_details);
  /external/chromium_org/extensions/common/permissions/
api_permission_set.cc 44 std::string error_details; local
45 if (!permission->FromValue(permission_value, &error_details,
48 if (error_details.empty()) {
56 error_details);
  /external/chromium_org/chrome/renderer/extensions/
enterprise_platform_keys_natives.cc 96 blink::WebString error_details; local
103 &error_details,
  /external/chromium_org/net/spdy/fuzzing/
hpack_example_generator.cc 54 CHECK(file_out.IsValid()) << file_out.error_details();
  /external/chromium_org/content/child/webcrypto/
status.h 33 const std::string& error_details() const { return error_details_; } function in class:content::webcrypto::Status

Completed in 1501 milliseconds

1 2 3