diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-28 16:30:05 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-28 08:31:52 +0200 |
commit | 2a3e763e99207b1354ed349bcbbf439721f08c14 (patch) | |
tree | 098f05cd46374f23021f478c01a136d5c8edc7c7 | |
parent | 49eb192b35879bb20829c3a6744d1d22be67fe2f (diff) |
osl: doxygen comment fix
Change-Id: I6c3b732bd9abe5cab44347adf0d8bc19588f31b5
Reviewed-on: https://gerrit.libreoffice.org/38101
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
-rw-r--r-- | include/osl/file.hxx | 94 |
1 files changed, 47 insertions, 47 deletions
diff --git a/include/osl/file.hxx b/include/osl/file.hxx index b005a31b5e76..6f02301fcf3f 100644 --- a/include/osl/file.hxx +++ b/include/osl/file.hxx @@ -53,53 +53,53 @@ class FileBase public: enum RC { - E_None = osl_File_E_None, //< on success - E_PERM = osl_File_E_PERM, //< operation not permitted - E_NOENT = osl_File_E_NOENT, //< no such file or directory - E_SRCH = osl_File_E_SRCH, //< no process matches the PID - E_INTR = osl_File_E_INTR, //< function call was interrupted - E_IO = osl_File_E_IO, //< I/O error occured - E_NXIO = osl_File_E_NXIO, //< no such device or address - E_2BIG = osl_File_E_2BIG, //< argument list too long - E_NOEXEC = osl_File_E_NOEXEC, //< invalid executable file format - E_BADF = osl_File_E_BADF, //< bad file descriptor - E_CHILD = osl_File_E_CHILD, //< there are no child processes - E_AGAIN = osl_File_E_AGAIN, //< resource temp unavailable, try again later - E_NOMEM = osl_File_E_NOMEM, //< no memory available - E_ACCES = osl_File_E_ACCES, //< file permissions do not allow operation - E_FAULT = osl_File_E_FAULT, //< bad address; an invalid pointer detected - E_BUSY = osl_File_E_BUSY, //< resource busy - E_EXIST = osl_File_E_EXIST, //< file exists where should only be created - E_XDEV = osl_File_E_XDEV, //< improper link across file systems detected - E_NODEV = osl_File_E_NODEV, //< wrong device type specified - E_NOTDIR = osl_File_E_NOTDIR, //< file isn't a directory where one is needed - E_ISDIR = osl_File_E_ISDIR, //< file is a directory, invalid operation - E_INVAL = osl_File_E_INVAL, //< invalid argument to library function - E_NFILE = osl_File_E_NFILE, //< too many distinct file openings - E_MFILE = osl_File_E_MFILE, //< process has too many distinct files open - E_NOTTY = osl_File_E_NOTTY, //< inappropriate I/O control operation - E_FBIG = osl_File_E_FBIG, //< file too large - E_NOSPC = osl_File_E_NOSPC, //< no space left on device, write failed - E_SPIPE = osl_File_E_ROFS, //< invalid seek operation (such as on pipe) - E_ROFS = osl_File_E_SPIPE, //< illegal modification to read-only filesystem - E_MLINK = osl_File_E_MLINK, //< too many links to file - E_PIPE = osl_File_E_PIPE, //< broken pipe; no process reading from other end of pipe - E_DOM = osl_File_E_DOM, //< domain error (mathematical error) - E_RANGE = osl_File_E_RANGE, //< range error (mathematical error) - E_DEADLK = osl_File_E_DEADLK, //< deadlock avoided - E_NAMETOOLONG = osl_File_E_NAMETOOLONG, //< filename too long - E_NOLCK = osl_File_E_NOLCK, //< no locks available - E_NOSYS = osl_File_E_NOSYS, //< function not implemented - E_NOTEMPTY = osl_File_E_NOTEMPTY, //< directory not empty - E_LOOP = osl_File_E_LOOP, //< too many levels of symbolic links found during name lookup - E_ILSEQ = osl_File_E_ILSEQ, //< invalid or incomplete byte sequence of multibyte char found - E_NOLINK = osl_File_E_NOLINK, //< link has been severed - E_MULTIHOP = osl_File_E_MULTIHOP, //< remote resource is not directly available - E_USERS = osl_File_E_USERS, //< file quote system is confused as there are too many users - E_OVERFLOW = osl_File_E_OVERFLOW, //< value too large for defined data type - E_NOTREADY = osl_File_E_NOTREADY, //< device not ready - E_invalidError = osl_File_E_invalidError, //< unmapped error: always last entry in enum! - E_TIMEDOUT = osl_File_E_TIMEDOUT, //< socket operation timed out + E_None = osl_File_E_None, ///< on success + E_PERM = osl_File_E_PERM, ///< operation not permitted + E_NOENT = osl_File_E_NOENT, ///< no such file or directory + E_SRCH = osl_File_E_SRCH, ///< no process matches the PID + E_INTR = osl_File_E_INTR, ///< function call was interrupted + E_IO = osl_File_E_IO, ///< I/O error occured + E_NXIO = osl_File_E_NXIO, ///< no such device or address + E_2BIG = osl_File_E_2BIG, ///< argument list too long + E_NOEXEC = osl_File_E_NOEXEC, ///< invalid executable file format + E_BADF = osl_File_E_BADF, ///< bad file descriptor + E_CHILD = osl_File_E_CHILD, ///< there are no child processes + E_AGAIN = osl_File_E_AGAIN, ///< resource temp unavailable, try again later + E_NOMEM = osl_File_E_NOMEM, ///< no memory available + E_ACCES = osl_File_E_ACCES, ///< file permissions do not allow operation + E_FAULT = osl_File_E_FAULT, ///< bad address; an invalid pointer detected + E_BUSY = osl_File_E_BUSY, ///< resource busy + E_EXIST = osl_File_E_EXIST, ///< file exists where should only be created + E_XDEV = osl_File_E_XDEV, ///< improper link across file systems detected + E_NODEV = osl_File_E_NODEV, ///< wrong device type specified + E_NOTDIR = osl_File_E_NOTDIR, ///< file isn't a directory where one is needed + E_ISDIR = osl_File_E_ISDIR, ///< file is a directory, invalid operation + E_INVAL = osl_File_E_INVAL, ///< invalid argument to library function + E_NFILE = osl_File_E_NFILE, ///< too many distinct file openings + E_MFILE = osl_File_E_MFILE, ///< process has too many distinct files open + E_NOTTY = osl_File_E_NOTTY, ///< inappropriate I/O control operation + E_FBIG = osl_File_E_FBIG, ///< file too large + E_NOSPC = osl_File_E_NOSPC, ///< no space left on device, write failed + E_SPIPE = osl_File_E_ROFS, ///< invalid seek operation (such as on pipe) + E_ROFS = osl_File_E_SPIPE, ///< illegal modification to read-only filesystem + E_MLINK = osl_File_E_MLINK, ///< too many links to file + E_PIPE = osl_File_E_PIPE, ///< broken pipe; no process reading from other end of pipe + E_DOM = osl_File_E_DOM, ///< domain error (mathematical error) + E_RANGE = osl_File_E_RANGE, ///< range error (mathematical error) + E_DEADLK = osl_File_E_DEADLK, ///< deadlock avoided + E_NAMETOOLONG = osl_File_E_NAMETOOLONG, ///< filename too long + E_NOLCK = osl_File_E_NOLCK, ///< no locks available + E_NOSYS = osl_File_E_NOSYS, ///< function not implemented + E_NOTEMPTY = osl_File_E_NOTEMPTY, ///< directory not empty + E_LOOP = osl_File_E_LOOP, ///< too many levels of symbolic links found during name lookup + E_ILSEQ = osl_File_E_ILSEQ, ///< invalid or incomplete byte sequence of multibyte char found + E_NOLINK = osl_File_E_NOLINK, ///< link has been severed + E_MULTIHOP = osl_File_E_MULTIHOP, ///< remote resource is not directly available + E_USERS = osl_File_E_USERS, ///< file quote system is confused as there are too many users + E_OVERFLOW = osl_File_E_OVERFLOW, ///< value too large for defined data type + E_NOTREADY = osl_File_E_NOTREADY, ///< device not ready + E_invalidError = osl_File_E_invalidError, ///< unmapped error: always last entry in enum! + E_TIMEDOUT = osl_File_E_TIMEDOUT, ///< socket operation timed out E_NETWORK = osl_File_E_NETWORK }; |