|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
lib/Support/RandomNumberGenerator.cpp 74 Ret = std::error_code(errno, std::system_category());
76 Ret = std::error_code(EIO, std::system_category());
78 Ret = std::error_code(errno, std::system_category());
82 return std::error_code(errno, std::system_category());
lib/Support/VirtualFileSystem.cpp 1092 std::system_category());
tools/clang/tools/extra/clangd/JSONTransport.cpp 86 std::error_code(errno, std::system_category()));
tools/lldb/source/Host/common/File.cpp 101 return std::error_code(ENOTSUP, std::system_category());
104 return std::error_code(ENOTSUP, std::system_category());
117 return std::error_code(ENOTSUP, std::system_category());
126 *error_ptr = std::error_code(ENOTSUP, std::system_category());
132 *error_ptr = std::error_code(ENOTSUP, std::system_category());
138 *error_ptr = std::error_code(ENOTSUP, std::system_category());
143 return std::error_code(ENOTSUP, std::system_category());
147 return std::error_code(ENOTSUP, std::system_category());
237 error = std::error_code(ENOTSUP, std::system_category());
tools/lldb/source/Host/common/FileSystem.cpp 437 std::error_code(errno, std::system_category()));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp 529 if (code.category() == std::system_category()) {
tools/lldb/unittests/Host/FileSystemTest.cpp 302 EXPECT_EQ(code.category(), std::system_category());
usr/include/c++/7.4.0/system_error 149 : _M_value(0), _M_cat(&system_category()) { }
168 { assign(0, system_category()); }