summaryrefslogtreecommitdiffstats
path: root/lldb/include/lldb/Utility/Status.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/include/lldb/Utility/Status.h')
-rw-r--r--lldb/include/lldb/Utility/Status.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/lldb/include/lldb/Utility/Status.h b/lldb/include/lldb/Utility/Status.h
index 7893fd419dd..f960631759c 100644
--- a/lldb/include/lldb/Utility/Status.h
+++ b/lldb/include/lldb/Utility/Status.h
@@ -27,7 +27,7 @@ class raw_ostream;
namespace lldb_private {
//----------------------------------------------------------------------
-/// @class Status Status.h "lldb/Utility/Status.h" An error handling class.
+/// \class Status Status.h "lldb/Utility/Status.h" An error handling class.
///
/// This class is designed to be able to hold any error code that can be
/// encountered on a given platform. The errors are stored as a value of type
@@ -56,10 +56,10 @@ public:
///
/// Initialize the error object with a generic success value.
///
- /// @param[in] err
+ /// \param[in] err
/// An error code.
///
- /// @param[in] type
+ /// \param[in] type
/// The type for \a err.
//------------------------------------------------------------------
Status();
@@ -76,10 +76,10 @@ public:
//------------------------------------------------------------------
/// Assignment operator.
///
- /// @param[in] err
+ /// \param[in] err
/// An error code.
///
- /// @return
+ /// \return
/// A const reference to this object.
//------------------------------------------------------------------
const Status &operator=(const Status &rhs);
@@ -99,7 +99,7 @@ public:
/// from a callback that is appropriate for the type of the error and will
/// be cached until the error value is changed or cleared.
///
- /// @return
+ /// \return
/// The error as a NULL terminated C string value if the error
/// is valid and is able to be converted to a string value,
/// NULL otherwise.
@@ -117,7 +117,7 @@ public:
//------------------------------------------------------------------
/// Test for error condition.
///
- /// @return
+ /// \return
/// \b true if this object contains an error, \b false
/// otherwise.
//------------------------------------------------------------------
@@ -126,7 +126,7 @@ public:
//------------------------------------------------------------------
/// Access the error value.
///
- /// @return
+ /// \return
/// The error value.
//------------------------------------------------------------------
ValueType GetError() const;
@@ -134,7 +134,7 @@ public:
//------------------------------------------------------------------
/// Access the error type.
///
- /// @return
+ /// \return
/// The error type enumeration value.
//------------------------------------------------------------------
lldb::ErrorType GetType() const;
@@ -145,7 +145,7 @@ public:
/// Set accesssor for the error value to \a err and the error type to \c
/// MachKernel.
///
- /// @param[in] err
+ /// \param[in] err
/// A mach error code.
//------------------------------------------------------------------
void SetMachError(uint32_t err);
@@ -161,10 +161,10 @@ public:
/// Set accesssor for the error value to \a err and the error type to \a
/// type.
///
- /// @param[in] err
+ /// \param[in] err
/// A mach error code.
///
- /// @param[in] type
+ /// \param[in] type
/// The type for \a err.
//------------------------------------------------------------------
void SetError(ValueType err, lldb::ErrorType type);
@@ -195,7 +195,7 @@ public:
/// will remain until the error value is cleared or a new error value/type
/// is assigned.
///
- /// @param err_str
+ /// \param err_str
/// The new custom error string to copy and cache.
//------------------------------------------------------------------
void SetErrorString(llvm::StringRef err_str);
@@ -203,7 +203,7 @@ public:
//------------------------------------------------------------------
/// Set the current error string to a formatted error string.
///
- /// @param format
+ /// \param format
/// A printf style format string
//------------------------------------------------------------------
int SetErrorStringWithFormat(const char *format, ...)
@@ -222,7 +222,7 @@ public:
/// Returns true if the error code in this object is considered a successful
/// return value.
///
- /// @return
+ /// \return
/// \b true if this object contains an value that describes
/// success (non-erro), \b false otherwise.
//------------------------------------------------------------------
@@ -234,7 +234,7 @@ public:
/// Returns true if the error code in this object was caused by an
/// interrupt. At present only supports Posix EINTR.
///
- /// @return
+ /// \return
/// \b true if this object contains an value that describes
/// failure due to interrupt, \b false otherwise.
//------------------------------------------------------------------
OpenPOWER on IntegriCloud