HomeSort by relevance Sort by last modified time
    Searched refs:error_code (Results 76 - 100 of 915) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/tools/obj2yaml/
elf2yaml.cpp 31 std::error_code dumpSymbol(const Elf_Sym *Sym, const Elf_Shdr *SymTab,
33 std::error_code dumpCommonSection(const Elf_Shdr *Shdr, ELFYAML::Section &S);
34 std::error_code dumpCommonRelocationSection(const Elf_Shdr *Shdr,
37 std::error_code dumpRelocation(const RelT *Rel, const Elf_Shdr *SymTab,
87 if (std::error_code EC = TableOrErr.getError())
94 if (std::error_code EC = S.getError())
101 if (std::error_code EC = S.getError())
108 if (std::error_code EC = G.getError())
115 if (std::error_code EC = G.getError())
122 if (std::error_code EC = S.getError()
    [all...]
  /external/llvm/include/llvm/ProfileData/
InstrProfReader.h 54 std::error_code LastError;
61 virtual std::error_code readHeader() = 0;
63 virtual std::error_code readNextRecord(InstrProfRecord &Record) = 0;
82 /// Set the current std::error_code and return same.
83 std::error_code error(std::error_code EC) {
89 std::error_code success() { return error(instrprof_error::success); }
97 std::error_code getError() { return LastError; }
124 std::error_code readValueProfileData(InstrProfRecord &Record);
134 std::error_code readHeader() override
    [all...]
CoverageMappingReader.h 72 virtual std::error_code readNextRecord(CoverageMappingRecord &Record) = 0;
85 std::error_code readULEB128(uint64_t &Result);
86 std::error_code readIntMax(uint64_t &Result, uint64_t MaxPlus1);
87 std::error_code readSize(uint64_t &Result);
88 std::error_code readString(StringRef &Result);
103 std::error_code read();
128 std::error_code read();
131 std::error_code decodeCounter(unsigned Value, Counter &C);
132 std::error_code readCounter(Counter &C);
133 std::error_code
    [all...]
  /external/llvm/include/llvm/Support/
Process.h 86 static std::error_code
95 static std::error_code FixupStandardFileDescriptors();
104 static std::error_code SafelyCloseFileDescriptor(int FD);
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
279 /// platform-specific error_code.
280 std::error_code make_absolute(const Twine &current_directory,
293 /// platform-specific error_code.
294 std::error_code make_absolute(SmallVectorImpl<char> &path);
300 /// specific error_code. If IgnoreExisting is false, also returns
302 std::error_code create_directories(const Twine &path,
310 /// specific error_code. If IgnoreExisting is false, also return
    [all...]
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 152 std::error_code SampleProfileReaderText::read() {
245 std::error_code EC;
265 std::error_code EC;
278 std::error_code EC;
280 if (std::error_code EC = Idx.getError())
287 std::error_code
290 if (std::error_code EC = NumSamples.getError())
296 if (std::error_code EC = NumRecords.getError())
301 if (std::error_code EC = LineOffset.getError())
305 return std::error_code();
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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)
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
handler_type_requirements.hpp 114 #define ASIO_READ_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, std::size_t)) asio_true_handler_type; ASIO_HANDLER_TYPE_REQUIREMENTS_ASSERT( sizeof(asio::detail::two_arg_handler_test( asio::detail::clvref< asio_true_handler_type>(), static_cast<const asio::error_code*>(0), static_cast<const std::size_t*>(0))) == 1, "ReadHandler type requirements not met") typedef asio::detail::handler_type_requirements< sizeof( asio::detail::argbyv( asio::detail::clvref< asio_true_handler_type>())) + sizeof( asio::detail::lvref< asio_true_handler_type>()( asio::detail::lvref<const asio::error_code>(), asio::detail::lvref<const std::size_t>()), char(0))> ASIO_UNUSED_TYPEDEF
117 #define ASIO_WRITE_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code, std::size_t)) asio_true_handler_type; ASIO_HANDLER_TYPE_REQUIREMENTS_ASSERT( sizeof(asio::detail::two_arg_handler_test( asio::detail::clvref< asio_true_handler_type>(), static_cast<const asio::error_code*>(0), static_cast<const std::size_t*>(0))) == 1, "WriteHandler type requirements not met") typedef asio::detail::handler_type_requirements< sizeof( asio::detail::argbyv( asio::detail::clvref< asio_true_handler_type>())) + sizeof( asio::detail::lvref< asio_true_handler_type>()( asio::detail::lvref<const asio::error_code>(), asio::detail::lvref<const std::size_t>()), char(0))> ASIO_UNUSED_TYPEDEF
119 #define ASIO_ACCEPT_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code)) asio_true_handler_type; ASIO_HANDLER_TYPE_REQUIREMENTS_ASSERT( sizeof(asio::detail::one_arg_handler_test( asio::detail::clvref< asio_true_handler_type>(), static_cast<const asio::error_code*>(0))) == 1, "AcceptHandler type requirements not met") typedef asio::detail::handler_type_requirements< sizeof( asio::detail::argbyv( asio::detail::clvref< asio_true_handler_type>())) + sizeof( asio::detail::lvref< asio_true_handler_type>()( asio::detail::lvref<const asio::error_code>()), char(0))> ASIO_UNUSED_TYPEDEF
121 #define ASIO_CONNECT_HANDLER_CHECK( handler_type, handler) typedef ASIO_HANDLER_TYPE(handler_type, void(asio::error_code)) asio_true_handler_type; ASIO_HANDLER_TYPE_REQUIREMENTS_ASSERT( sizeof(asio::de (…)
    [all...]
task_io_service.hpp 18 #include "asio/error_code.hpp"
53 ASIO_DECL std::size_t run(asio::error_code& ec);
56 ASIO_DECL std::size_t run_one(asio::error_code& ec);
59 ASIO_DECL std::size_t poll(asio::error_code& ec);
62 ASIO_DECL std::size_t poll_one(asio::error_code& ec);
127 thread_info& this_thread, const asio::error_code& ec);
131 thread_info& this_thread, const asio::error_code& ec);
base_from_completion_cond.hpp 33 const asio::error_code& ec,
53 const asio::error_code& ec,
  /external/clang/lib/Frontend/
ModuleDependencyCollector.cpp 29 std::error_code copyToRoot(StringRef Src);
51 std::error_code EC;
60 std::error_code ModuleDependencyListener::copyToRoot(StringRef Src) {
77 if (std::error_code EC = fs::create_directories(path::parent_path(Dest),
80 if (std::error_code EC = fs::copy_file(AbsoluteSrc, Dest))
84 return std::error_code();
  /external/libchrome/base/json/
json_file_value_serializer.cc 86 const char* JSONFileValueDeserializer::GetErrorMessageForCode(int error_code) {
87 switch (error_code) {
105 int* error_code,
110 if (error_code)
111 *error_code = error;
119 return deserializer.Deserialize(error_code, error_str);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver.hpp 97 asio::error_code ec;
120 iterator resolve(const query& q, asio::error_code& ec)
136 * const asio::error_code& error, // Result of operation.
153 void (asio::error_code, iterator))
186 asio::error_code ec;
211 iterator resolve(const endpoint_type& e, asio::error_code& ec)
229 * const asio::error_code& error, // Result of operation.
246 void (asio::error_code, iterator))
  /bionic/libc/arch-arm64/denver64/bionic/
memcpy.S 54 ldr x1, error_code
56 error_code: label
  /bionic/libc/arch-arm64/generic/bionic/
memcpy.S 54 ldr x1, error_code
56 error_code: label
  /external/v8/src/wasm/
wasm-result.h 42 Result() : val(), error_code(kSuccess), start(nullptr), error_pc(nullptr) {
47 ErrorCode error_code; member in struct:v8::internal::wasm::Result
53 bool ok() const { return error_code == kSuccess; }
54 bool failed() const { return error_code != kSuccess; }
58 error_code = that.error_code;
83 os << result.error_code;
89 std::ostream& operator<<(std::ostream& os, const ErrorCode& error_code);
  /external/webrtc/webrtc/voice_engine/test/auto_test/fixtures/
after_initialization_fixture.cc 18 void CallbackOnError(int channel, int error_code) {
20 ": error code " << error_code; local
  /external/parameter-framework/asio-1.10.6/include/asio/impl/
connect.hpp 33 Iterator operator()(const asio::error_code&, Iterator next)
43 asio::error_code ec;
51 Iterator begin, asio::error_code& ec)
60 asio::error_code ec;
68 Iterator begin, Iterator end, asio::error_code& ec)
78 asio::error_code ec;
88 asio::error_code& ec)
98 asio::error_code ec;
108 asio::error_code& ec)
110 ec = asio::error_code();
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 35 static bool checkSize(MemoryBufferRef M, std::error_code &EC, uint64_t Size) {
43 static std::error_code checkOffset(MemoryBufferRef M, uintptr_t Addr,
50 return std::error_code();
56 static std::error_code getObject(const T *&Obj, MemoryBufferRef M,
60 if (std::error_code EC = checkOffset(M, Addr, Size))
63 return std::error_code();
151 std::error_code EC = getSymbolName(Symb, Result);
171 if (std::error_code EC = getSection(SectionNumber, Section))
244 if (std::error_code EC = getSection(Symb.getSectionNumber(), Sec))
262 std::error_code COFFObjectFile::getSectionName(DataRefImpl Ref
    [all...]
  /bionic/libc/kernel/uapi/asm-arm/asm/
sigcontext.h 24 unsigned long error_code; member in struct:sigcontext
  /development/ndk/platforms/android-21/arch-arm/include/asm/
sigcontext.h 24 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

Completed in 1289 milliseconds

1 2 34 5 6 7 8 91011>>