HomeSort by relevance Sort by last modified time
    Searched defs:error_details (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/chrome/renderer/extensions/
enterprise_platform_keys_natives.cc 96 blink::WebString error_details; local
103 &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
  /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/net/quic/test_tools/
mock_crypto_client_stream.cc 98 string error_details; local
100 session()->config()->ProcessPeerHello(msg, CLIENT, &error_details);
  /external/chromium_org/net/quic/
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_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_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_session_test.cc 61 string error_details; variable
70 msg, CLIENT, &error_details);
    [all...]
quic_framer.cc 1550 StringPiece error_details; local
1575 StringPiece error_details; local
    [all...]
quic_protocol.h 778 std::string error_details; member in struct:net::QuicRstStreamFrame
794 std::string error_details; member in struct:net::QuicConnectionCloseFrame
    [all...]
  /external/chromium_org/net/quic/crypto/
quic_crypto_client_config_test.cc 125 string error_details; local
138 &error_details);
proof_test.cc 36 string* error_details)
39 error_details_(error_details) {}
42 const string& error_details,
45 *error_details_ = error_details;
67 string error_details; local
71 new TestProofVerifierCallback(&comp_callback, &ok, &error_details);
75 &error_details, &details, callback);
81 ASSERT_NE("", error_details);
86 ASSERT_EQ("", error_details);
120 string error_details, signature, first_signature local
    [all...]
crypto_server_test.cc 230 string error_details; local
234 &params_, &out_, &error_details);
238 << "Message failed with error " << error_details << ": "
244 EXPECT_TRUE(error_details.find(error_substr) != string::npos)
245 << error_substr << " not in " << error_details; local
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_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/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/base/files/
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

Completed in 538 milliseconds