Searched refs:error (Results 201 - 225 of 8406) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dcreate_directory_operation_unittest.cc19 FileError error = GetLocalResourceEntry(path, &entry); local
20 if (error == FILE_ERROR_OK && !entry.file_info().is_directory())
21 error = FILE_ERROR_NOT_A_DIRECTORY;
22 return error;
44 FileError error = FILE_ERROR_FAILED; local
49 google_apis::test_util::CreateCopyResultCallback(&error));
51 EXPECT_EQ(FILE_ERROR_OK, error);
63 google_apis::test_util::CreateCopyResultCallback(&error));
65 EXPECT_EQ(FILE_ERROR_NOT_FOUND, error);
72 google_apis::test_util::CreateCopyResultCallback(&error));
[all...]
H A Dremove_operation_unittest.cc31 FileError error = FILE_ERROR_FAILED; local
35 google_apis::test_util::CreateCopyResultCallback(&error));
37 EXPECT_EQ(FILE_ERROR_OK, error);
41 error = FILE_ERROR_FAILED;
45 google_apis::test_util::CreateCopyResultCallback(&error));
47 EXPECT_EQ(FILE_ERROR_OK, error);
52 error = FILE_ERROR_FAILED;
57 google_apis::test_util::CreateCopyResultCallback(&error));
59 EXPECT_EQ(FILE_ERROR_NOT_FOUND, error);
79 FileError error local
[all...]
H A Dtruncate_operation_unittest.cc40 FileError error = FILE_ERROR_FAILED; local
44 google_apis::test_util::CreateCopyResultCallback(&error));
46 EXPECT_EQ(FILE_ERROR_OK, error);
49 error = FILE_ERROR_FAILED;
52 google_apis::test_util::CreateCopyResultCallback(&error, &local_path));
54 ASSERT_EQ(FILE_ERROR_OK, error);
71 FileError error = FILE_ERROR_FAILED; local
75 google_apis::test_util::CreateCopyResultCallback(&error));
77 EXPECT_EQ(FILE_ERROR_INVALID_OPERATION, error);
84 FileError error local
99 FileError error = FILE_ERROR_FAILED; local
[all...]
/external/llvm/test/MC/SystemZ/
H A Dinsn-bad-z196.s5 #CHECK: error: invalid operand
7 #CHECK: error: invalid operand
9 #CHECK: error: invalid operand
16 #CHECK: error: invalid operand
18 #CHECK: error: invalid operand
20 #CHECK: error: invalid operand
27 #CHECK: error: invalid operand
29 #CHECK: error: invalid operand
31 #CHECK: error: invalid operand
33 #CHECK: error
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_error_message.css6 #error-message {
13 .show-with-error-state-portal,
14 .show-with-error-state-offline,
15 .show-with-error-state-proxy,
16 .show-with-error-state-auth-ext-timeout,
25 .error-state-portal .show-with-error-state-portal,
26 .error-state-offline .show-with-error-state-offline,
27 .error
[all...]
/external/llvm/test/MC/PowerPC/
H A Dppc64-errors.s7 # CHECK: error: invalid operand for instruction
11 # CHECK: error: invalid register name
17 # CHECK: error: invalid operand for instruction
21 # CHECK: error: invalid operand for instruction
27 # CHECK: error: invalid operand for instruction
31 # CHECK: error: invalid operand for instruction
37 # CHECK: error: invalid operand for instruction
41 # CHECK: error: invalid operand for instruction
47 # CHECK: error: invalid operand for instruction
50 # CHECK: error
[all...]
/external/chromium_org/chrome/test/webdriver/
H A Dwebdriver_automation.h80 void Init(const BrowserOptions& options, int* build_no, Error** error);
92 Error** error);
98 Error** error);
104 Error** error);
111 Error** error);
117 const WebViewId& view_id, const base::FilePath& path, Error** error);
122 const WebViewId& view_id, const std::string& reason, Error** error);
126 const WebViewId& view_id, const std::string& url, Error** error);
128 const WebViewId& view_id, const std::string& url, Error** error);
129 void GoForward(const WebViewId& view_id, Error** error);
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Derror_state.cc27 unsigned int error,
39 unsigned int error,
54 // The last error message set.
56 // Current GL error bits.
79 // Check the GL error first, then our wrapped error.
80 GLenum error = glGetError(); local
81 if (error == GL_NO_ERROR && error_bits_ != 0) {
84 error = GLES2Util::GLErrorBitToGLError(mask);
90 if (error !
99 GLenum error = glGetError(); local
106 SetGLError( const char* filename, int line, unsigned int error, const char* function_name, const char* msg) argument
134 SetGLErrorInvalidParam( const char* filename, int line, unsigned int error, const char* function_name, unsigned int pname, int param) argument
157 GLenum error; local
167 GLenum error; local
[all...]
/external/chromium_org/net/base/
H A Dfile_stream_metrics.cc36 void RecordFileError(int error, FileErrorSource source, bool record) { argument
38 << " error = " << error
47 int bucket = GetFileErrorUmaBucket(error);
55 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Open", error, max_error);
60 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Write", error, max_error);
65 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Read", error, max_error);
70 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Seek", error, max_error);
75 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Flush", error, max_error);
80 UMA_HISTOGRAM_ENUMERATION("Net.FileError_SetEof", error, max_erro
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DWorkerGlobalScopeWebDatabase.cpp48 DatabaseError error = DatabaseError::None; local
50 database = dbManager.openDatabase(context, name, version, displayName, estimatedSize, creationCallback, error);
51 ASSERT(database || error != DatabaseError::None);
52 if (error != DatabaseError::None)
53 es.throwDOMException(DatabaseManager::exceptionCodeForDatabaseError(error));
65 DatabaseError error = DatabaseError::None; local
67 database = dbManager.openDatabaseSync(context, name, version, displayName, estimatedSize, creationCallback, error);
68 ASSERT(database || error != DatabaseError::None);
69 if (error != DatabaseError::None)
70 es.throwDOMException(DatabaseManager::exceptionCodeForDatabaseError(error));
[all...]
/external/dropbear/libtomcrypt/src/pk/rsa/
H A Drsa_exptmod.c55 if ((err = mp_read_unsigned_bin(tmp, (unsigned char *)in, (int)inlen)) != CRYPT_OK) { goto error; }
60 goto error;
66 if ((err = mp_exptmod(tmp, key->dP, key->p, tmpa)) != CRYPT_OK) { goto error; }
69 if ((err = mp_exptmod(tmp, key->dQ, key->q, tmpb)) != CRYPT_OK) { goto error; }
72 if ((err = mp_sub(tmpa, tmpb, tmp)) != CRYPT_OK) { goto error; }
73 if ((err = mp_mulmod(tmp, key->qP, key->p, tmp)) != CRYPT_OK) { goto error; }
76 if ((err = mp_mul(tmp, key->q, tmp)) != CRYPT_OK) { goto error; }
77 if ((err = mp_add(tmp, tmpb, tmp)) != CRYPT_OK) { goto error; }
80 if ((err = mp_exptmod(tmp, key->e, key->N, tmp)) != CRYPT_OK) { goto error; }
88 goto error;
[all...]
/external/chromium/net/base/
H A Dcert_verifier_unittest.cc51 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
126 int error; local
180 int error; local
235 int error; local
269 int error; local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dmount_mem.cc27 Error error = Mount::Init(dev, args, ppapi); local
28 if (error)
29 return error;
32 error = root_->Init(S_IREAD | S_IWRITE);
33 if (error) {
35 return error;
46 // If there is no root there, we have an error.
56 // If not a directory, then we have an error so return.
61 Error error = node->FindChild(path.Part(index), &node);
62 if (error)
81 Error error = FindNode(path, 0, &node); local
100 Error error = FindNode(path, 0, &node); local
153 int error = FindNode(path.Parent(), S_IFDIR, &parent); local
204 int error = FindNode(path.Parent(), S_IFDIR, &parent); local
[all...]
H A Dkernel_proxy.cc91 Error error = AcquireMountAndRelPath(path, &mnt, &rel); local
92 if (error) {
93 errno = error;
98 error = mnt->OpenResource(rel, &node);
99 if (error) {
101 error = mnt->Open(rel, O_RDONLY, &node);
102 if (error) {
103 errno = error;
109 error = handle->Init(O_RDONLY);
110 if (error) {
122 Error error = AcquireMountAndNode(path, oflags, &mnt, &node); local
140 Error error = AcquireHandle(fd, &handle); local
153 Error error = AcquireHandle(oldfd, &handle); local
168 Error error = AcquireHandle(oldfd, &old_handle); local
179 Error error = SetCWD(path); local
253 Error error = AcquireMountAndRelPath(path, &mnt, &rel); local
272 Error error = AcquireMountAndRelPath(path, &mnt, &rel); local
335 Error error = factory->second->CreateMount(dev_++, smap, ppapi_, &mnt); local
351 Error error = DetachMountAtPath(path); local
361 Error error = AcquireHandle(fd, &handle); local
379 Error error = AcquireHandle(fd, &handle); local
397 Error error = AcquireHandle(fd, &handle); local
414 Error error = AcquireHandle(fd, &handle); local
430 Error error = AcquireHandle(fd, &handle); local
447 Error error = AcquireHandle(fd, &handle); local
464 Error error = AcquireHandle(fd, &handle); local
481 Error error = AcquireHandle(fd, &handle); local
498 Error error = AcquireHandle(fd, &handle); local
518 Error error = AcquireMountAndRelPath(path, &mnt, &rel); local
537 Error error = AcquireMountAndRelPath(path, &mnt, &rel); local
555 Error error = AcquireHandle(fd, &handle); local
568 Error error = AcquireMountAndRelPath(path, &mnt, &rel); local
604 Error error = AcquireHandle(fd, &handle); local
657 Error error = AcquireHandle(fd, &handle); local
674 Error error = AcquireHandle(fd, &handle); local
692 Error error = AcquireHandle(fd, &handle); local
1160 Error error = AcquireHandle(fd, handle); local
[all...]
/external/chromium_org/chrome/browser/extensions/api/content_settings/
H A Dcontent_settings_unittest.cc26 std::string error; local
28 kTestPatterns[i].extension_pattern, &error).ToString();
30 << "Unexpected error parsing " << kTestPatterns[i].extension_pattern
31 << ": " << error;
43 std::string error; local
45 kInvalidTestPatterns[i].extension_pattern, &error);
47 EXPECT_EQ(kInvalidTestPatterns[i].expected_error, error)
48 << "Unexpected error parsing "
/external/chromium_org/chrome/browser/extensions/
H A Dmanagement_policy.h39 // For all of the Provider methods below, if |error| is not NULL and the
40 // method imposes a restriction on the desired action, |error| may be set
41 // to an applicable error message, but this is not required.
55 string16* error) const;
61 string16* error) const;
69 string16* error) const;
85 // extension. If not, |error| may be set to an appropriate message.
86 bool UserMayLoad(const Extension* extension, string16* error) const;
90 // file access, etc.). If not, |error| may be set to an appropriate message.
92 string16* error) cons
[all...]
/external/chromium_org/chrome/browser/google_apis/
H A Ddrive_common_callbacks.h21 typedef base::Callback<void(GDataErrorCode error,
26 typedef base::Callback<void(GDataErrorCode error,
31 typedef base::Callback<void(GDataErrorCode error,
36 typedef base::Callback<void(GDataErrorCode error,
40 typedef base::Callback<void(GDataErrorCode error,
50 typedef base::Callback<void(GDataErrorCode error,
/external/chromium_org/chrome/browser/net/gaia/
H A Dgaia_oauth_consumer.h19 virtual void OnGetOAuthTokenFailure(const GoogleServiceAuthError& error) {} argument
24 const GoogleServiceAuthError& error) {}
30 const GoogleServiceAuthError& error) {}
33 virtual void OnUserInfoFailure(const GoogleServiceAuthError& error) {} argument
38 virtual void OnOAuthLoginFailure(const GoogleServiceAuthError& error) {} argument
41 virtual void OnOAuthRevokeTokenFailure(const GoogleServiceAuthError& error) {} argument
23 OnOAuthGetAccessTokenFailure( const GoogleServiceAuthError& error) argument
29 OnOAuthWrapBridgeFailure(const std::string& service_scope, const GoogleServiceAuthError& error) argument
/external/chromium_org/chrome/test/webdriver/commands/
H A Dhtml5_location_commands.cc31 Error* error = session_->GetGeolocation(&geolocation); local
32 if (error) {
33 response->SetError(error);
46 Error* error = session_->OverrideGeolocation(geolocation); local
47 if (error)
48 response->SetError(error);
H A Durl_command.cc31 Error* error = session_->GetURL(&url); local
32 if (error) {
33 response->SetError(error);
47 Error* error = session_->NavigateToURL(url); local
48 if (error) {
49 response->SetError(error);
/external/chromium_org/net/quic/
H A Dquic_crypto_stream.cc27 session()->ConnectionClose(framer->error(), false);
38 CloseConnection(crypto_framer_.error());
44 void QuicCryptoStream::CloseConnection(QuicErrorCode error) { argument
45 session()->connection()->SendConnectionClose(error);
48 void QuicCryptoStream::CloseConnectionWithDetails(QuicErrorCode error, argument
50 session()->connection()->SendConnectionCloseWithDetails(error, details);
/external/chromium_org/third_party/freetype/src/base/
H A Dbasepic.c54 FT_Error error = FT_Err_Ok; local
60 return error;
65 error = ft_create_default_module_classes( library );
66 if ( error )
74 if(error)
76 return error;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCSessionDescriptonDelegate.h43 error:(NSError *)error;
47 didSetSessionDescriptionWithError:(NSError *)error;
/external/clang/test/Headers/
H A Dcxx11.cpp7 #error alignas should not be defined in C++
11 #error alignof should not be defined in C++
21 #error SIZE_MAX should be defined in C++
/external/elfutils/libdwfl/
H A Ddwfl_nextcu.c69 Dwfl_Error error; local
72 error = __libdwfl_nextcu (mod, cu, &cu);
73 if (error != DWFL_E_NOERROR)
96 error = mod->dwerr;
98 while (error == DWFL_E_NOERROR);
100 __libdwfl_seterrno (error);

Completed in 2183 milliseconds

1234567891011>>