Searched refs:error_details (Results 1 - 25 of 69) sorted by relevance

123

/external/chromium_org/content/child/webcrypto/test/
H A Dstatus_unittest.cc38 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/
H A Dquic_config.cc28 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 !
23 ReadUint32(const CryptoHandshakeMessage& msg, QuicTag tag, QuicConfigPresence presence, uint32 default_value, uint32* out, string* error_details) argument
94 ProcessPeerHello( const CryptoHandshakeMessage& peer_hello, HelloType hello_type, string* error_details) argument
179 ProcessPeerHello( const CryptoHandshakeMessage& peer_hello, HelloType hello_type, string* error_details) argument
261 ProcessPeerHello( const CryptoHandshakeMessage& peer_hello, HelloType hello_type, string* error_details) argument
329 ProcessPeerHello( const CryptoHandshakeMessage& peer_hello, HelloType hello_type, string* error_details) argument
397 ProcessPeerHello( const CryptoHandshakeMessage& peer_hello, HelloType hello_type, string* error_details) argument
687 ProcessPeerHello( const CryptoHandshakeMessage& peer_hello, HelloType hello_type, string* error_details) argument
[all...]
H A Dquic_config_test.cc104 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...]
H A Dquic_config.h54 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);
H A Dquic_crypto_client_stream.cc52 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);
50 Run( bool ok, const string& error_details, scoped_ptr<ProofVerifyDetails>* details) argument
[all...]
H A Dquic_crypto_server_stream.cc88 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);
220 ProcessClientHello( const CryptoHandshakeMessage& message, const ValidateClientHelloResultCallback::Result& result, CryptoHandshakeMessage* reply, string* error_details) argument
H A Dquic_crypto_server_stream.h89 std::string* error_details);
/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler.cc204 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) {
201 Compile(const std::string& source_code, const std::string& hash_seed, std::string* output_bytecode, CompileError* error_details) argument
[all...]
/external/chromium_org/net/quic/crypto/
H A Dproof_verifier.h44 // 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,
H A Dproof_verifier_chromium.cc58 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;
115 VerifyProof( const string& hostname, const string& server_config, const vector<string>& certs, const string& signature, std::string* error_details, scoped_ptr<ProofVerifyDetails>* verify_details, ProofVerifierCallback* callback) argument
352 VerifyProof( const std::string& hostname, const std::string& server_config, const std::vector<std::string>& certs, const std::string& signature, const ProofVerifyContext* verify_context, std::string* error_details, scoped_ptr<ProofVerifyDetails>* verify_details, ProofVerifierCallback* callback) argument
[all...]
H A Dquic_crypto_client_config.cc125 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
124 SetServerConfig( StringPiece server_config, QuicWallTime now, string* error_details) argument
578 CacheNewServerConfig( const CryptoHandshakeMessage& message, QuicWallTime now, const vector<string>& cached_certs, CachedState* cached, string* error_details) argument
635 ProcessRejection( const CryptoHandshakeMessage& rej, QuicWallTime now, CachedState* cached, bool is_https, QuicCryptoNegotiatedParameters* out_params, string* error_details) argument
688 ProcessServerHello( const CryptoHandshakeMessage& server_hello, QuicConnectionId connection_id, const QuicVersionVector& negotiated_versions, CachedState* cached, QuicCryptoNegotiatedParameters* out_params, string* error_details) argument
764 ProcessServerConfigUpdate( const CryptoHandshakeMessage& server_config_update, QuicWallTime now, CachedState* cached, QuicCryptoNegotiatedParameters* out_params, string* error_details) argument
[all...]
H A Dquic_crypto_client_config.h59 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);
H A Dproof_verifier_chromium.h68 std::string* error_details,
H A Dquic_crypto_server_config.cc104 string error_details; member in struct:net::ValidateClientHelloResultCallback::Result
119 void ValidationComplete(QuicErrorCode error_code, const char* error_details) { argument
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
[all...]
/external/chromium_org/base/files/
H A Dfile.cc44 File::File(Error error_details) argument
45 : error_details_(error_details),
52 error_details_(other.object->error_details()),
66 error_details_ = other.object->error_details();
H A Dfile.h167 // 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
H A Dfile_unittest.cc23 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/components/translate/core/browser/
H A Dtranslate_manager.cc311 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/
H A Dcrypto_test_utils_chromium.cc85 std::string* error_details,
88 error_details->clear();
93 *error_details = "Invalid proof";
H A Dmock_crypto_client_stream.cc98 string error_details; local
100 session()->config()->ProcessPeerHello(msg, CLIENT, &error_details);
/external/chromium_org/extensions/common/permissions/
H A Dapi_permission_set.cc44 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/
H A Denterprise_platform_keys_natives.cc96 blink::WebString error_details; local
103 &error_details,
/external/chromium_org/net/spdy/fuzzing/
H A Dhpack_example_generator.cc54 CHECK(file_out.IsValid()) << file_out.error_details();
/external/chromium_org/content/child/webcrypto/
H A Dstatus.h33 const std::string& error_details() const { return error_details_; } function in class:content::webcrypto::Status
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_version_upgrade.cc140 if (fake_index_file.error_details() == base::File::FILE_ERROR_NOT_FOUND) {

Completed in 518 milliseconds

123