HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 551 - 575 of 2948) sorted by null

<<21222324252627282930>>

  /external/chromium/base/
sync_socket_win.cc 86 DWORD error = GetLastError(); local
87 if (error != ERROR_PIPE_CONNECTED) {
  /external/chromium/base/win/
event_trace_controller.cc 97 ULONG error = ::EnableTrace(TRUE, flags, level, &provider, session_); local
98 return HRESULT_FROM_WIN32(error);
102 ULONG error = ::EnableTrace(FALSE, 0, 0, &provider, session_); local
103 return HRESULT_FROM_WIN32(error);
111 ULONG error = ::ControlTrace(session_, NULL, properties->get(), local
113 if (ERROR_SUCCESS != error)
114 return HRESULT_FROM_WIN32(error);
126 ULONG error = ::ControlTrace(session_, NULL, properties->get(), local
128 if (ERROR_SUCCESS != error)
129 return HRESULT_FROM_WIN32(error);
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
login_performer.h 41 // (3) Display error message and allow "Sign Out" as the only action.
44 // If |delegate_| is not NULL it will handle error messages,
49 // input & error messages display is dedicated to ScreenLocker instance.
77 virtual void OnLoginFailure(const LoginFailure& error);
108 // Returns latest auth error.
109 const GoogleServiceAuthError& error() const { function in class:chromeos::LoginPerformer
110 return last_login_failure_.error();
131 // Resolves initial LoginFailure::NETWORK_AUTH_FAILED error i.e.
138 // Resolves LoginFailure::NETWORK_AUTH_FAILED error when screen is locked.
139 // Uses ScreenLocker to show error message based on |last_login_failure_|
    [all...]
login_status_consumer.h 49 const GoogleServiceAuthError& error) {
50 return LoginFailure(NETWORK_AUTH_FAILED, error);
82 const GoogleServiceAuthError& error() const { return error_; } function in class:chromeos::LoginFailure
86 LoginFailure(FailureReason reason, GoogleServiceAuthError error)
88 error_(error) {
101 // The current login attempt has ended in failure, with error |error|.
102 virtual void OnLoginFailure(const LoginFailure& error) = 0;
  /external/chromium/chrome/browser/diagnostics/
sqlite_diagnostics.cc 57 int error = db.GetErrorCode(); local
58 if (SQLITE_BUSY == error) {
61 string16 str(ASCIIToUTF16("Pragma failed. Error: "));
62 str += base::IntToString16(error);
97 "Sqlite.Cookie.Error",
98 "Sqlite.History.Error",
99 "Sqlite.Thumbnail.Error",
100 "Sqlite.Text.Error",
101 "Sqlite.Web.Error"
  /external/chromium/chrome/browser/extensions/
convert_web_app.cc 90 LOG(ERROR) << "Could not get path to profile temporary directory.";
96 LOG(ERROR) << "Could not create temporary directory.";
140 LOG(ERROR) << "Could not serialize manifest.";
147 LOG(ERROR) << "Could not create icons directory.";
157 LOG(ERROR) << "Could not create icon file.";
163 LOG(ERROR) << "Could not write icon file.";
169 std::string error; local
175 &error);
177 LOG(ERROR) << error;
    [all...]
  /external/chromium/chrome/browser/net/gaia/
token_service.h 84 const GoogleServiceAuthError& error)
85 : service_(service), error_(error) {}
87 const GoogleServiceAuthError& error() const { return error_; } function in class:TokenService::TokenRequestFailedDetails
141 const GoogleServiceAuthError& error);
158 const GoogleServiceAuthError& error);
  /external/chromium/chrome/browser/renderer_host/
chrome_render_message_filter.cc 211 std::string error; local
214 extension_path, default_locale, &error));
  /external/chromium/chrome/browser/sync/glue/
extension_util_unittest.cc 78 std::string error; local
80 extension_path, location, source, Extension::STRICT_ERROR_CHECKS, &error);
82 EXPECT_EQ("", error);
391 std::string error; local
394 Extension::STRICT_ERROR_CHECKS, &error);
396 EXPECT_EQ("", error);
  /external/chromium/chrome/common/extensions/
extension_l10n_util_unittest.cc 32 std::string error; local
36 &error));
49 std::string error; local
53 &error));
74 std::string error; local
78 &error));
95 std::string error; local
99 &error));
116 std::string error; local
120 &error));
141 std::string error; local
168 std::string error; local
204 std::string error; local
244 std::string error; local
255 std::string error; local
266 std::string error; local
284 std::string error; local
303 std::string error; local
328 std::string error; local
353 std::string error; local
383 std::string error; local
    [all...]
extension_manifests_unittest.cc 33 std::string* error) {
42 return static_cast<DictionaryValue*>(serializer.Deserialize(NULL, error));
49 std::string* error) {
56 return Extension::Create(path.DirName(), location, *value, flags, error);
60 std::string* error) {
61 return LoadExtensionWithLocation(name, Extension::INTERNAL, false, error);
65 std::string* error) {
66 return LoadExtensionWithLocation(name, Extension::INTERNAL, true, error);
70 std::string* error) {
71 // Loading as an installed extension disables strict error checks
88 std::string error; local
96 std::string error; local
105 std::string error; local
120 " expected '" << expected_error << "' but got '" << error << "'"; local
125 std::string error; local
132 std::string error; local
140 std::string error; local
304 std::string error; local
447 std::string error; local
    [all...]
  /external/chromium/chrome/common/
service_process_util_win.cc 118 DWORD error = GetLastError(); local
119 if ((error == ERROR_ALREADY_EXISTS) || (error == ERROR_ACCESS_DENIED))
  /external/chromium/net/base/
cert_database_nss_unittest.cc 377 // TODO(mattm): should check for net error equivalent of
423 // TODO(mattm): should check for net error equivalent of
464 int error = goog_cert->Verify("www.google.com", flags, &verify_result); local
465 EXPECT_EQ(OK, error);
489 int error = puny_cert->Verify("xn--wgv71a119e.com", flags, &verify_result); local
490 EXPECT_EQ(ERR_CERT_AUTHORITY_INVALID, error);
500 error = puny_cert->Verify("xn--wgv71a119e.com", flags, &verify_result);
501 EXPECT_EQ(OK, error);
cert_verifier_unittest.cc 51 int error; local
56 error = verifier.Verify(google_cert, "www.example.com", 0, &verify_result,
58 ASSERT_EQ(ERR_IO_PENDING, error);
60 error = callback.WaitForResult();
61 ASSERT_TRUE(IsCertificateError(error));
66 error = verifier.Verify(google_cert, "www.example.com", 0, &verify_result,
69 ASSERT_NE(ERR_IO_PENDING, error);
70 ASSERT_TRUE(IsCertificateError(error));
89 int error; local
97 error = verifier.Verify(google_cert, "www.example.com", 0, &verify_result
126 int error; local
180 int error; local
235 int error; local
269 int error; local
    [all...]
directory_lister.cc 24 explicit DirectoryDataEvent(DirectoryLister* d) : lister(d), error(0) {
31 lister->OnDone(error);
39 int error; member in class:net::DirectoryDataEvent
99 e->error = ERR_FILE_NOT_FOUND;
229 void DirectoryLister::OnDone(int error) {
230 // If canceled is set, we need to report some kind of error,
231 // but don't overwrite the error condition if it is already set.
232 if (!error && canceled_.IsSet())
233 error = ERR_ABORTED;
236 delegate_->OnListDone(error);
    [all...]
  /external/chromium/net/proxy/
sync_host_resolver_bridge.cc 106 int error = host_resolver_->Resolve( local
108 if (error != ERR_IO_PENDING)
109 OnResolveCompletion(error); // Completed synchronously.
  /external/chromium/third_party/libjingle/source/talk/examples/login/
xmppsocket.cc 100 LOG(LS_ERROR) << "Send error: " << cricket_socket_->GetError();
118 void XmppSocket::OnCloseEvent(talk_base::AsyncSocket * socket, int error) {
119 SignalCloseEvent(error);
146 int error; local
148 &written, &error);
150 LOG(LS_ERROR) << "Send error: " << error;
169 buzz::AsyncSocket::Error XmppSocket::error() { function in class:XmppSocket
  /external/chromium-trace/
systrace.py 19 def error(self, msg): member in class:OptionParserIgnoreErrors
47 print >> sys.stderr, 'Error querying device SDK-version:'
108 parser.error('the trace time must be a positive number')
114 parser.error('the trace buffer size must be a positive number')
242 print >> sys.stderr, 'adb returned error code %d' % result
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
checkerbase.py 31 from closure_linter.common import error namespace
39 'Whether to show error exceptions.')
129 """Prints out the given error message including a line number.
132 code: The error code.
133 message: The error to print.
134 token: The token where the error occurred, or None if it was a file-wide
136 position: The position of the error, defaults to None.
137 fix_data: Metadata used for fixing the error.
141 error.Error(code, message, token, position, fix_data)
    [all...]
javascriptlintrules.py 36 from closure_linter.common import error namespace
40 Error = error.Error
393 # Don't report an error before a start bracket - it will be reported
423 """Reports missing provide statements to the error handler.
428 token: The token where the error was detected (also where the new provides
443 """Reports missing require statements to the error handler.
448 token: The token where the error was detected (also where the new requires
468 # Report an error for any declared private member that was never used
    [all...]
  /external/chromium_org/base/test/
gtest_xml_util.cc 18 // is a pointer to a std::string where the error message should be appended.
22 std::string* error = static_cast<std::string*>(context); local
23 base::StringAppendV(error, message, args);
  /external/chromium_org/base/win/
event_trace_controller.cc 97 ULONG error = ::EnableTrace(TRUE, flags, level, &provider, session_); local
98 return HRESULT_FROM_WIN32(error);
102 ULONG error = ::EnableTrace(FALSE, 0, 0, &provider, session_); local
103 return HRESULT_FROM_WIN32(error);
111 ULONG error = ::ControlTrace(session_, NULL, properties->get(), local
113 if (ERROR_SUCCESS != error)
114 return HRESULT_FROM_WIN32(error);
126 ULONG error = ::ControlTrace(session_, NULL, properties->get(), local
128 if (ERROR_SUCCESS != error)
129 return HRESULT_FROM_WIN32(error);
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
create_directory_operation.cc 48 // So, FILE_ERROR_EXISTS is not an error.
127 FileError error = metadata->GetResourceEntryById(local_id, entry); local
128 DCHECK_EQ(FILE_ERROR_OK, error);
204 FileError error = GDataToFileError(gdata_error); local
205 if (error != FILE_ERROR_OK) {
206 callback.Run(error);
238 FileError error) {
242 if (error != FILE_ERROR_OK) {
243 callback.Run(error);
create_file_operation.cc 41 FileError error = metadata->GetResourceEntryByPath(file_path, &entry); local
42 if (error == FILE_ERROR_OK) {
43 // Error if an exclusive mode is requested, or the entry is not a file.
52 if (error == FILE_ERROR_NOT_FOUND) {
53 // If parent path is not a directory, it is an error.
72 return error;
94 FileError error = metadata->GetIdByResourceId(parent_resource_id, local
96 if (error != FILE_ERROR_OK)
97 return error;
101 error = metadata->AddEntry(entry, &local_id)
216 FileError error = GDataToFileError(gdata_error); local
    [all...]
operation_test_base.cc 91 FileError error = FILE_ERROR_FAILED; local
97 google_apis::test_util::CreateCopyResultCallback(&error));
99 ASSERT_EQ(FILE_ERROR_OK, error);
124 google_apis::test_util::CreateCopyResultCallback(&error));
126 ASSERT_EQ(FILE_ERROR_OK, error);
131 FileError error = FILE_ERROR_FAILED; local
137 base::Bind(google_apis::test_util::CreateCopyResultCallback(&error)));
139 return error;
145 FileError error = FILE_ERROR_FAILED; local
151 base::Bind(google_apis::test_util::CreateCopyResultCallback(&error)));
158 FileError error = FILE_ERROR_FAILED; local
171 FileError error = FILE_ERROR_FAILED; local
    [all...]

Completed in 310 milliseconds

<<21222324252627282930>>