HomeSort by relevance Sort by last modified time
    Searched refs:error_code (Results 1 - 25 of 253) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/llvm/include/llvm/Object/
ObjectFile.h 65 content_iterator& increment(error_code &err) {
67 if (error_code ec = Current.getNext(next))
98 error_code getNext(RelocationRef &Result) const;
100 error_code getAddress(uint64_t &Result) const;
101 error_code getSymbol(SymbolRef &Result) const;
102 error_code getType(uint32_t &Result) const;
107 error_code getTypeName(SmallVectorImpl<char> &Result) const;
108 error_code getAdditionalInfo(int64_t &Result) const;
114 error_code getValueString(SmallVectorImpl<char> &Result) const;
134 error_code getNext(SectionRef &Result) const
    [all...]
MachO.h 30 MachOObjectFile(MemoryBuffer *Object, MachOObject *MOO, error_code &ec);
49 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
50 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
51 virtual error_code getSymbolOffset(DataRefImpl Symb, uint64_t &Res) const;
52 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
53 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
54 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
55 virtual error_code isSymbolInternal(DataRefImpl Symb, bool &Res) const;
56 virtual error_code isSymbolGlobal(DataRefImpl Symb, bool &Res) const;
57 virtual error_code isSymbolWeak(DataRefImpl Symb, bool &Res) const
    [all...]
COFF.h 99 error_code getString(uint32_t offset, StringRef &Res) const;
106 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
107 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
108 virtual error_code getSymbolOffset(DataRefImpl Symb, uint64_t &Res) const;
109 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
110 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
111 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
112 virtual error_code isSymbolInternal(DataRefImpl Symb, bool &Res) const;
113 virtual error_code isSymbolGlobal(DataRefImpl Symb, bool &Res) const;
114 virtual error_code isSymbolWeak(DataRefImpl Symb, bool &Res) const
    [all...]
Binary.h 61 error_code createBinary(MemoryBuffer *Source, OwningPtr<Binary> &Result);
62 error_code createBinary(StringRef Path, OwningPtr<Binary> &Result);
Error.h 38 inline error_code make_error_code(object_error e) {
39 return error_code(static_cast<int>(e), object_category());
  /external/llvm/include/llvm/Support/
FileSystem.h 14 // All functions return an error_code and their actual work via the last out
19 // this does not guarantee that error_code will be in the set of explicitly
21 // errors occur, the correct error_code will be used ]. All functions may
118 /// platform specific error_code.
119 error_code make_absolute(SmallVectorImpl<char> &path);
129 /// error_code.
130 error_code copy_file(const Twine &from, const Twine &to,
138 /// otherwise a platform specific error_code.
139 error_code create_directories(const Twine &path, bool &existed);
146 /// otherwise a platform specific error_code
    [all...]
MemoryBuffer.h 22 class error_code;
66 static error_code getFile(StringRef Filename, OwningPtr<MemoryBuffer> &result,
69 static error_code getFile(const char *Filename,
76 static error_code getOpenFile(int FD, const char *Filename,
110 static error_code getSTDIN(OwningPtr<MemoryBuffer> &result);
116 static error_code getFileOrSTDIN(StringRef Filename,
119 static error_code getFileOrSTDIN(const char *Filename,
  /external/chromium/net/base/
test_root_certs_openssl.cc 20 unsigned long error_code = ERR_peek_error(); local
21 if (ERR_GET_LIB(error_code) != ERR_LIB_X509 ||
22 ERR_GET_REASON(error_code) != X509_R_CERT_ALREADY_IN_HASH_TABLE) {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
functional_hash.h 60 struct error_code;
64 hash<error_code>::operator()(error_code) const;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
functional_hash.h 60 struct error_code;
64 hash<error_code>::operator()(error_code) const;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
functional_hash.h 60 struct error_code;
64 hash<error_code>::operator()(error_code) const;
  /external/javasqlite/src/main/java/SQLite/
Vm.java 19 protected int error_code = 0; field in class:Vm
  /external/chromium/base/
platform_file_posix.cc 34 bool* created, PlatformFileError* error_code) {
48 *error_code = error_code ? PLATFORM_FILE_ERROR_FAILED : PLATFORM_FILE_OK;
97 if (error_code) {
99 *error_code = PLATFORM_FILE_OK;
106 *error_code = PLATFORM_FILE_ERROR_ACCESS_DENIED;
109 *error_code = PLATFORM_FILE_ERROR_IN_USE;
112 *error_code = PLATFORM_FILE_ERROR_EXISTS;
115 *error_code = PLATFORM_FILE_ERROR_NOT_FOUND;
118 *error_code = PLATFORM_FILE_ERROR_TOO_MANY_OPENED
    [all...]
  /external/chromium/chrome/browser/google/
google_update.h 70 // state is, |error_code| represents what error occurred and |version|
75 GoogleUpdateErrorCode error_code,
116 bool ReportFailure(HRESULT hr, GoogleUpdateErrorCode error_code,
130 // listener. If results indicates an error, the error_code will indicate which
134 GoogleUpdateErrorCode error_code);
  /external/chromium/chrome/browser/tab_contents/
tab_contents_ssl_helper.h 27 scoped_refptr<SSLAddCertHandler> handler, int error_code);
33 scoped_refptr<SSLAddCertHandler> handler, int error_code);
  /bionic/libc/kernel/arch-arm/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /development/ndk/platforms/android-3/arch-arm/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /external/chromium/chrome/browser/chromeos/
google_update_chromeos.cc 107 GoogleUpdateErrorCode error_code) {
109 DCHECK(results == UPGRADE_ERROR ? error_code != GOOGLE_UPDATE_NO_ERROR :
110 error_code == GOOGLE_UPDATE_NO_ERROR);
112 listener_->OnReportResults(results, error_code, version_available_);
  /external/kernel-headers/original/asm-arm/
sigcontext.h 11 unsigned long error_code; member in struct:sigcontext
  /external/llvm/lib/Object/
Object.cpp 44 error_code ec;
51 if (error_code ec = (*unwrap(SI))->getName(ret))
58 if (error_code ec = (*unwrap(SI))->getSize(ret))
65 if (error_code ec = (*unwrap(SI))->getContents(ret))
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/asm/
sigcontext.h 17 unsigned long error_code; member in struct:sigcontext

Completed in 473 milliseconds

1 2 3 4 5 6 7 8 91011