| /external/chromium/net/tools/flip_server/ | 
| balsa_enums.h | 96   static const char* ParseStateToString(ParseState error_code); 97   static const char* ErrorCodeToString(ErrorCode error_code);
 
 | 
| /external/llvm/include/llvm/Object/ | 
| Binary.h | 97 error_code createBinary(MemoryBuffer *Source, OwningPtr<Binary> &Result); 99 error_code createBinary(StringRef Path, OwningPtr<Binary> &Result);
 
 | 
| Archive.h | 43     error_code getName(StringRef &Result) const; 52     error_code getAsBinary(OwningPtr<Binary> &Result) const;
 96     error_code getName(StringRef &Result) const;
 97     error_code getMember(child_iterator &Result) const;
 123   Archive(MemoryBuffer *source, error_code &ec);
 
 | 
| ELF.h | 311   error_code getNext(DynRefImpl &Result) const; 513   error_code      getSymbolVersion(const Elf_Shdr *section,
 524   error_code      getSymbolName(const Elf_Shdr *section,
 527   error_code      getSectionName(const Elf_Shdr *section,
 530   error_code getSymbolVersion(SymbolRef Symb, StringRef &Version,
 533   virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
 534   virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
 535   virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
 536   virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
 537   virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const
 [all...]
 | 
| /external/chromium/chrome/browser/extensions/ | 
| extension_proxy_api.h | 47                     int error_code); 
 | 
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ | 
| n_r3964.h | 92 	  int     error_code;  member in struct:r3964_client_message 
 | 
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ | 
| n_r3964.h | 92 	  int     error_code;  member in struct:r3964_client_message 
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ | 
| n_r3964.h | 92 	  int     error_code;  member in struct:r3964_client_message 
 | 
| /external/llvm/lib/Support/ | 
| FileOutputBuffer.cpp | 44 error_code FileOutputBuffer::create(StringRef FilePath, 50   error_code EC = sys::fs::status(FilePath, Stat);
 124   return error_code::success();
 128 error_code FileOutputBuffer::commit(int64_t NewSmallerSize) {
 131   error_code EC = sys::fs::unmap_file_pages(Start, getBufferSize());
 
 | 
| PathV2.cpp | 600 error_code make_absolute(SmallVectorImpl<char> &path) { 612     return error_code::success();
 616   if (error_code ec = current_path(current_dir)) return ec;
 624     return error_code::success();
 633     return error_code::success();
 645     return error_code::success();
 652 error_code create_directories(const Twine &path, bool &existed) {
 659     if (error_code ec = fs::exists(parent, parent_exists)) return ec;
 662       if (error_code ec = create_directories(parent, existed)) return ec;
 680 error_code is_directory(const Twine &path, bool &result)
 [all...]
 | 
| system_error.cpp | 40 error_category::equivalent(const error_code& code, int condition) const { 115 // error_code
 118 error_code::message() const {
 
 | 
| /external/chromium/chrome/browser/net/ | 
| resolve_proxy_msg_helper_unittest.cc | 29     PendingResult(int error_code, 31         : error_code(error_code), proxy_list(proxy_list) {
 34     int error_code;  member in struct:ResolveProxyMsgHelperTest::PendingResult
 110   EXPECT_EQ(net::OK, pending_result()->error_code);
 122   EXPECT_EQ(net::OK, pending_result()->error_code);
 134   EXPECT_EQ(net::OK, pending_result()->error_code);
 169   EXPECT_EQ(net::OK, pending_result()->error_code);
 180   EXPECT_EQ(net::OK, pending_result()->error_code);
 191   EXPECT_EQ(net::OK, pending_result()->error_code);
 [all...]
 | 
| /external/chromium/base/files/ | 
| file_path_watcher_win.cc | 202   DWORD error_code = GetLastError();  local 203   if (error_code != ERROR_FILE_NOT_FOUND &&
 204       error_code != ERROR_PATH_NOT_FOUND &&
 205       error_code != ERROR_ACCESS_DENIED &&
 206       error_code != ERROR_SHARING_VIOLATION &&
 207       error_code != ERROR_DIRECTORY) {
 
 | 
| /external/chromium/base/i18n/ | 
| file_util_icu.cc | 95     UErrorCode error_code = U_ZERO_ERROR;  local 101         error_code);
 102     DCHECK(U_SUCCESS(error_code));
 108     UErrorCode error_code = U_ZERO_ERROR;  local
 111     collator_.reset(icu::Collator::createInstance(error_code));
 112     DCHECK(U_SUCCESS(error_code));
 
 | 
| /external/chromium/chrome/browser/tab_contents/ | 
| tab_contents_ssl_helper.cc | 188     scoped_refptr<SSLAddCertHandler> handler, int error_code) { 194                                  base::IntToString16(-error_code),
 195                                  ASCIIToUTF16(net::ErrorToString(error_code))));
 212     scoped_refptr<SSLAddCertHandler> handler, int error_code) {
 218                                  base::IntToString16(-error_code),
 219                                  ASCIIToUTF16(net::ErrorToString(error_code))));
 
 | 
| /external/chromium/net/base/ | 
| upload_data_stream_unittest.cc | 97   int error_code;  local 99       UploadDataStream::Create(upload_data_, &error_code));
 101     ASSERT_TRUE(!stream.get() && error_code == ERR_UPLOAD_FILE_CHANGED);
 103     ASSERT_TRUE(stream.get() && error_code == OK);
 
 | 
| /external/llvm/include/llvm/Support/ | 
| LockFileManager.h | 48   Optional<error_code> Error; 
 | 
| /external/llvm/lib/Object/ | 
| Binary.cpp | 43 error_code object::createBinary(MemoryBuffer *Source, 52   error_code ec;
 98 error_code object::createBinary(StringRef Path, OwningPtr<Binary> &Result) {
 100   if (error_code ec = MemoryBuffer::getFileOrSTDIN(Path, File))
 
 | 
| /frameworks/compile/mclinker/include/mcld/LD/ | 
| ELFObjectWriter.h | 37   llvm::error_code writeObject(Output& pOutput) 
 | 
| /external/chromium/chrome/common/ | 
| json_pref_store.cc | 44     int error_code;  local 47     value_.reset(serializer.Deserialize(&error_code, &error_msg));
 49     HandleErrors(value_.get(), path, error_code, error_msg, &error_);
 67                            int error_code,
 84     int error_code,
 90     switch (error_code) {
 251   int error_code = 0;  local
 255   scoped_ptr<Value> value(serializer.Deserialize(&error_code, &error_msg));
 260                                        error_code,
 
 | 
| /external/chromium/base/ | 
| platform_file_unittest.cc | 67   base::PlatformFileError error_code = base::PLATFORM_FILE_OK;  local 70       NULL, &error_code);
 72   EXPECT_EQ(base::PLATFORM_FILE_ERROR_NOT_FOUND, error_code);
 76   error_code = base::PLATFORM_FILE_OK;
 79       &created, &error_code);
 82   EXPECT_EQ(base::PLATFORM_FILE_OK, error_code);
 89       &created, &error_code);
 92   EXPECT_EQ(base::PLATFORM_FILE_OK, error_code);
 98       &created, &error_code);
 101   EXPECT_EQ(base::PLATFORM_FILE_ERROR_EXISTS, error_code);
 [all...]
 | 
| platform_file_win.cc | 16                                 PlatformFileError* error_code) { 80   if (error_code) {
 82       *error_code = PLATFORM_FILE_OK;
 87           *error_code = PLATFORM_FILE_ERROR_IN_USE;
 90           *error_code = PLATFORM_FILE_ERROR_EXISTS;
 93           *error_code = PLATFORM_FILE_ERROR_NOT_FOUND;
 96           *error_code = PLATFORM_FILE_ERROR_ACCESS_DENIED;
 99           *error_code = PLATFORM_FILE_ERROR_FAILED;
 
 | 
| /external/llvm/tools/llvm-cov/ | 
| llvm-cov.cpp | 48   if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputGCNO, GCNO_Buff)) { 60     if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputGCDA, GCDA_Buff)) {
 
 | 
| /frameworks/compile/libbcc/include/bcc/Support/ | 
| FileBase.h | 74   llvm::error_code mError; 140   inline const llvm::error_code &getError() const
 143   // The return value of llvm::error_code::message() is obtained upon the call
 144   // and is passed by value (that is, it's not a member of llvm::error_code.)
 
 | 
| /external/javasqlite/src/main/java/SQLite/ | 
| Database.java | 19     protected int error_code = 0;  field in class:Database 308 		set_last_error(vm.error_code);
 311 			set_last_error(vm.error_code);
 315 			set_last_error(vm.error_code);
 361 		set_last_error(vm.error_code);
 364 			set_last_error(vm.error_code);
 368 			set_last_error(vm.error_code);
 417 			set_last_error(vm.error_code);
 421 			set_last_error(vm.error_code);
 517 	return error_code;
 [all...]
 |