|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/lldb/include/lldb/Utility/Status.h 106 ValueType GetError() const;
References
tools/lldb/source/API/SBError.cpp 81 err = m_opaque_up->GetError();
tools/lldb/source/Commands/CommandObjectExpression.cpp 464 if (result_valobj_sp->GetError().GetError() ==
tools/lldb/source/Core/Communication.cpp 337 if (error.GetType() == eErrorTypePOSIX && error.GetError() == EIO) {
tools/lldb/source/Expression/REPL.cpp 309 } else if (result_valobj_sp->GetError().GetError() ==
tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp 408 uint32_t error_value = error.GetError();
506 switch (error.GetError()) {
589 switch (error.GetError()) {
tools/lldb/source/Host/posix/PipePosix.cpp 144 } while (error.GetError() == EEXIST);
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp 1700 if (err.GetError() == UserExpression::kNoResult) {
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp 603 file_spec.GetCString(), mode, error.GetError(), error.AsCString());
614 file_spec.GetCString(), file_permissions, error.GetError(),
626 file_spec.GetCString(), file_permissions, error.GetError(),
674 src.GetCString(), dst.GetCString(), error.GetError(),
683 file_spec.GetCString(), error.GetError(), error.AsCString());
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp 334 if (status.GetError() == ESRCH) {
465 if (info_err.GetError() == EINVAL) {
1016 if (error.GetError() == EIO || error.GetError() == EFAULT) {
1016 if (error.GetError() == EIO || error.GetError() == EFAULT) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp 107 packet.Printf("E%2.2x;", static_cast<uint8_t>(error.GetError()));
111 return SendErrorResponse(error.GetError());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp 557 save_errno = error.GetError();
588 const int save_errno = error.GetError();
622 const int save_errno = error.GetError();
671 response.Printf(",%i", (int)Status(ec).GetError());
711 response.Printf("F%u,%u", error.GetError(), error.GetError());
711 response.Printf("F%u,%u", error.GetError(), error.GetError());
723 response.Printf("F%u,%u", error.GetError(), error.GetError());
723 response.Printf("F%u,%u", error.GetError(), error.GetError());
805 response.Printf("F%u", error.GetError());
825 response.Printf("F%u", error.GetError());
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp 1087 LLDB_LOG(log, "uid is {0} , error is {1}", uid, error.GetError());
tools/lldb/source/Utility/SelectHelper.cpp 219 if (error.GetError() == EINTR) {
tools/lldb/unittests/Utility/StatusTest.cpp 32 EXPECT_EQ(Status::ValueType(EAGAIN), eagain.GetError());