HomeSort by relevance Sort by last modified time
    Searched refs:error_code (Results 201 - 225 of 1862) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
LockFileManager.h 59 Optional<std::error_code> Error;
85 std::error_code unsafeRemoveLockFile();
91 void setError(std::error_code &EC, StringRef ErrorMsg = "") {
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
LockFileManager.h 59 Optional<std::error_code> Error;
85 std::error_code unsafeRemoveLockFile();
91 void setError(std::error_code &EC, StringRef ErrorMsg = "") {
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
LockFileManager.h 59 Optional<std::error_code> Error;
85 std::error_code unsafeRemoveLockFile();
91 void setError(std::error_code &EC, StringRef ErrorMsg = "") {
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
LockFileManager.h 59 Optional<std::error_code> Error;
85 std::error_code unsafeRemoveLockFile();
91 void setError(std::error_code &EC, StringRef ErrorMsg = "") {
  /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)
  /system/chre/host/common/include/chre_host/
log.h 57 * @param error_code Standard error code number (EINVAL, etc)
59 #define LOG_ERROR(message, error_code) \
62 strerror_r(error_code, error_string, sizeof(error_string)); \
63 LOGE("%s: %s (%d)\n", message, error_string, 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/libchrome/base/json/
json_file_value_serializer.cc 84 const char* JSONFileValueDeserializer::GetErrorMessageForCode(int error_code) {
85 switch (error_code) {
103 int* error_code,
108 if (error_code)
109 *error_code = error;
116 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))
  /external/swiftshader/third_party/LLVM/lib/Object/
COFFObjectFile.cpp 31 bool checkSize(const MemoryBuffer *m, error_code &ec, uint64_t size) {
41 error_code &ec,
89 error_code COFFObjectFile::getSymbolNext(DataRefImpl Symb,
98 error_code COFFObjectFile::getSymbolName(DataRefImpl Symb,
104 if (error_code ec = getString(Offset, Result))
118 error_code COFFObjectFile::getSymbolOffset(DataRefImpl Symb,
122 if (error_code ec = getSection(symb->SectionNumber, Section))
125 if (error_code ec = getSymbolNMTypeChar(Symb, Type))
136 error_code COFFObjectFile::getSymbolAddress(DataRefImpl Symb,
140 if (error_code ec = getSection(symb->SectionNumber, Section)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Object/
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/v8/src/wasm/
wasm-result.h 31 Result() : val(), error_code(kSuccess), start(nullptr), error_pc(nullptr) {}
40 ErrorCode error_code; member in struct:v8::internal::wasm::Result
46 bool ok() const { return error_code == kSuccess; }
47 bool failed() const { return error_code != kSuccess; }
51 error_code = that.error_code;
79 os << result.error_code;
86 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
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcError.h 36 std::error_code orcError(OrcErrorCode ErrCode);
43 std::error_code convertToErrorCode() const override;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ExecutionEngine/Orc/
OrcError.h 40 std::error_code orcError(OrcErrorCode ErrCode);
47 std::error_code convertToErrorCode() const override;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ExecutionEngine/Orc/
OrcError.h 40 std::error_code orcError(OrcErrorCode ErrCode);
47 std::error_code convertToErrorCode() const override;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ExecutionEngine/Orc/
OrcError.h 40 std::error_code orcError(OrcErrorCode ErrCode);
47 std::error_code convertToErrorCode() const override;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ExecutionEngine/Orc/
OrcError.h 40 std::error_code orcError(OrcErrorCode ErrCode);
47 std::error_code convertToErrorCode() const override;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
OrcError.h 36 std::error_code orcError(OrcErrorCode ErrCode);
43 std::error_code convertToErrorCode() const override;

Completed in 309 milliseconds

1 2 3 4 5 6 7 891011>>