/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
D | PathV2.inc | 105 return error_code(errno, system_category()); 129 return error_code(errno, system_category()); 135 return error_code(errno, system_category()); 144 return error_code(errno, system_category()); 170 return error_code(errno, system_category()); 181 return error_code(errno, system_category()); 197 return error_code(errno, system_category()); 210 return error_code(errno, system_category()); 221 return error_code(errno, system_category()); 245 return error_code(errno, system_category()); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | RandomNumberGenerator.cpp | 72 return std::error_code(GetLastError(), std::system_category()); in getRandomBytes() 79 Ret = std::error_code(errno, std::system_category()); in getRandomBytes() 81 Ret = std::error_code(EIO, std::system_category()); in getRandomBytes() 83 Ret = std::error_code(errno, std::system_category()); in getRandomBytes() 87 return std::error_code(errno, std::system_category()); in getRandomBytes()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/ |
D | system_category.pass.cpp | 33 const std::error_category& e_cat1 = std::system_category(); in test_message_for_bad_value() 41 const std::error_category& e_cat1 = std::system_category(); in main() 47 assert(e_cond.category() == std::system_category()); in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.compare/ |
D | eq_error_code_error_code.pass.cpp | 27 std::error_code e_code2(5, std::system_category()); in main() 29 std::error_code e_code4(6, std::system_category()); in main() 31 std::error_condition e_condition2(5, std::system_category()); in main() 33 std::error_condition e_condition4(6, std::system_category()); in main()
|
/external/parameter-framework/asio-1.10.6/include/asio/impl/ |
D | error_code.ipp | 28 class system_category : public error_category 59 const error_category& system_category() 61 static detail::system_category instance;
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/ |
D | clear.pass.cpp | 23 ec.assign(6, std::system_category()); in main() 25 assert(ec.category() == std::system_category()); in main()
|
D | assign.pass.cpp | 23 ec.assign(6, std::system_category()); in main() 25 assert(ec.category() == std::system_category()); in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/ |
D | int_error_category.pass.cpp | 22 std::error_code ec(6, std::system_category()); in main() 24 assert(ec.category() == std::system_category()); in main()
|
D | default.pass.cpp | 23 assert(ec.category() == std::system_category()); in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/ |
D | int_error_category.pass.cpp | 22 std::error_condition ec(6, std::system_category()); in main() 24 assert(ec.category() == std::system_category()); in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/ |
D | assign.pass.cpp | 23 ec.assign(6, std::system_category()); in main() 25 assert(ec.category() == std::system_category()); in main()
|
D | clear.pass.cpp | 28 assert(ec.category() == std::system_category()); in main()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | system_error.cpp | 94 system_category() { in system_category() function 104 return system_category(); in posix_category()
|
/external/libcxx/src/ |
D | system_error.cpp | 202 return error_condition(ev, system_category()); in default_error_condition() 208 system_category() _NOEXCEPT in system_category() function 288 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | system_error.h | 669 const error_category& system_category(); 739 error_code() : _val_(0), _cat_(&system_category()) {} 767 _cat_ = &system_category(); 905 return error_code(static_cast<int>(e), system_category());
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
D | error.hpp | 194 return asio::system_category(); in get_system_category() 208 static const asio::error_category& system_category variable
|
D | error_code.hpp | 28 extern ASIO_DECL const error_category& system_category();
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/ |
D | value.pass.cpp | 21 const std::error_condition ec(6, std::system_category()); in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/ |
D | value.pass.cpp | 21 const std::error_code ec(6, std::system_category()); in main()
|
D | default_error_condition.pass.cpp | 27 const std::error_code ec(6, std::system_category()); in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/ |
D | neq.pass.cpp | 23 const std::error_category& e_cat3 = std::system_category(); in main()
|
D | eq.pass.cpp | 23 const std::error_category& e_cat3 = std::system_category(); in main()
|
D | lt.pass.cpp | 23 const std::error_category& e_cat3 = std::system_category(); in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.derived/ |
D | message.pass.cpp | 25 const std::error_category& e_cat2 = std::system_category(); in main()
|
/external/libcxx/test/std/diagnostics/syserr/syserr.hash/ |
D | error_code.pass.cpp | 34 T ec(i, std::system_category()); in test()
|