/external/chromium_org/net/cert/ |
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) {
|
/prebuilts/gcc/linux-x86/host/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;
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
functional_hash.h | 60 struct error_code; 64 hash<error_code>::operator()(error_code) const;
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
functional_hash.h | 60 struct error_code; 64 hash<error_code>::operator()(error_code) const;
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
functional_hash.h | 60 struct error_code; 64 hash<error_code>::operator()(error_code) const;
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
functional_hash.h | 60 struct error_code; 64 hash<error_code>::operator()(error_code) const;
|
/external/llvm/include/llvm/Object/ |
COFF.h | 207 error_code getString(uint32_t offset, StringRef &Res) const; 214 virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const; 215 virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const; 216 virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const; 217 virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const; 218 virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const; 219 virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const; 220 virtual error_code getSymbolFlags(DataRefImpl Symb, uint32_t &Res) const; 221 virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const; 222 virtual error_code getSymbolSection(DataRefImpl Symb [all...] |
Error.h | 38 inline error_code make_error_code(object_error e) { 39 return error_code(static_cast<int>(e), object_category());
|
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/ |
cld_unicodetext.h | 24 // [out, optional] error_code - set to 0 in case of success, Windows 37 int* error_code, int* text_bytes);
|
/external/javasqlite/src/main/java/SQLite/ |
Vm.java | 19 protected int error_code = 0; field in class:Vm
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/ |
stream_inserter.pass.cpp | 12 // class error_code 16 // operator<<(basic_ostream<charT,traits>& os, const error_code& ec); 25 out << std::error_code(std::io_errc::stream);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/ |
message.pass.cpp | 12 // class error_code 22 const std::error_code ec(6, std::generic_category());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.future_error/ |
code.pass.cpp | 14 // const error_code& code() const throw(); 22 std::error_code ec = std::make_error_code(std::future_errc::broken_promise); 27 std::error_code ec = std::make_error_code(std::future_errc::future_already_retrieved); 32 std::error_code ec = std::make_error_code(std::future_errc::promise_already_satisfied); 37 std::error_code ec = std::make_error_code(std::future_errc::no_state);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/ |
assign.pass.cpp | 12 // class error_code 22 std::error_code ec; 28 std::error_code ec;
|
/external/chromium_org/android_webview/browser/net/ |
input_stream_reader.cc | 29 int error_code = VerifyRequestedRange(&verified_byte_range, &content_size); local 30 if (error_code != net::OK) 31 return error_code; 33 error_code = SkipToRequestedRange(verified_byte_range); 34 if (error_code != net::OK) 35 return error_code;
|
/external/chromium_org/chrome/installer/util/ |
self_reg_work_item.cc | 32 // Any number thus found will be returned in |error_code|. The "cleaned" 36 // not set then *error_code will be unchanged and the original HRESULT is 40 HRESULT UnMuxHRESULTErrorCode(HRESULT hr, int* error_code) { 41 DCHECK(error_code); 43 *error_code = (hr & 0x07800000) >> 23; 75 int error_code = 0; local 76 HRESULT unmuxed_hr = UnMuxHRESULTErrorCode(hr, &error_code); 80 << error_code;
|
/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/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 270 /// platform specific error_code. 271 error_code make_absolute(SmallVectorImpl<char> &path); 278 /// otherwise a platform specific error_code. 279 error_code create_directories(const Twine &path, bool &existed); 283 inline error_code create_directories(const Twine &Path) { 293 /// otherwise a platform specific error_code. 294 error_code create_directory(const Twine &path, bool &existed) [all...] |
FileOutputBuffer.h | 24 class error_code; 43 static error_code create(StringRef FilePath, size_t Size, 72 error_code commit(int64_t NewSmallerSize = -1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
system_error.cpp | 39 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT 131 // error_code 134 error_code::message() const 142 system_error::__init(const error_code& ec, string what_arg) 153 system_error::system_error(error_code ec, const string& what_arg) 159 system_error::system_error(error_code ec, const char* what_arg) 165 system_error::system_error(error_code ec) 172 : runtime_error(__init(error_code(ev, ecat), what_arg)), 173 __ec_(error_code(ev, ecat)) 178 : runtime_error(__init(error_code(ev, ecat), what_arg)) [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_org/chromeos/app_mode/ |
kiosk_oem_manifest_parser.cc | 31 int error_code = JSONFileValueSerializer::JSON_NO_ERROR; local 36 serializer->Deserialize(&error_code, &error_msg)); 38 if (error_code != JSONFileValueSerializer::JSON_NO_ERROR ||
|
/external/llvm/lib/Support/ |
DataStream.cpp | 66 error_code OpenFile(const std::string &Filename) { 70 return error_code::success(); 83 if (error_code e = s->OpenFile(Filename)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_errno.py | 16 for error_code in std_c_errors: 17 self.assertTrue(hasattr(errno, error_code), 18 "errno is missing %s" % error_code)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_errno.py | 16 for error_code in std_c_errors: 17 self.assertTrue(hasattr(errno, error_code), 18 "errno is missing %s" % error_code)
|