nsprpub/pr/src/misc/prerr.et

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/nsprpub/pr/src/misc/prerr.et	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,108 @@
     1.4 +# 
     1.5 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.8 +
     1.9 +et nspr -6000
    1.10 +
    1.11 +ec PR_OUT_OF_MEMORY_ERROR,      "Memory allocation attempt failed"
    1.12 +ec PR_BAD_DESCRIPTOR_ERROR,     "Invalid file descriptor"
    1.13 +ec PR_WOULD_BLOCK_ERROR,        "The operation would have blocked"
    1.14 +ec PR_ACCESS_FAULT_ERROR,       "Invalid memory address argument"
    1.15 +ec PR_INVALID_METHOD_ERROR,     "Invalid function for file type"
    1.16 +ec PR_ILLEGAL_ACCESS_ERROR,     "Invalid memory address argument"
    1.17 +ec PR_UNKNOWN_ERROR,            "Some unknown error has occurred"
    1.18 +ec PR_PENDING_INTERRUPT_ERROR,"Operation interrupted by another thread"
    1.19 +ec PR_NOT_IMPLEMENTED_ERROR,    "function not implemented"
    1.20 +ec PR_IO_ERROR,                 "I/O function error"
    1.21 +ec PR_IO_TIMEOUT_ERROR,         "I/O operation timed out"
    1.22 +ec PR_IO_PENDING_ERROR,         "I/O operation on busy file descriptor"
    1.23 +ec PR_DIRECTORY_OPEN_ERROR,     "The directory could not be opened"
    1.24 +ec PR_INVALID_ARGUMENT_ERROR, "Invalid function argument"
    1.25 +ec PR_ADDRESS_NOT_AVAILABLE_ERROR, "Network address not available (in use?)"
    1.26 +ec PR_ADDRESS_NOT_SUPPORTED_ERROR, "Network address type not supported"
    1.27 +ec PR_IS_CONNECTED_ERROR,       "Already connected"
    1.28 +ec PR_BAD_ADDRESS_ERROR,        "Network address is invalid"
    1.29 +ec PR_ADDRESS_IN_USE_ERROR,     "Local Network address is in use"
    1.30 +ec PR_CONNECT_REFUSED_ERROR,    "Connection refused by peer"
    1.31 +ec PR_NETWORK_UNREACHABLE_ERROR, "Network address is presently unreachable"
    1.32 +ec PR_CONNECT_TIMEOUT_ERROR,    "Connection attempt timed out"
    1.33 +ec PR_NOT_CONNECTED_ERROR,      "Network file descriptor is not connected"
    1.34 +ec PR_LOAD_LIBRARY_ERROR,       "Failure to load dynamic library"
    1.35 +ec PR_UNLOAD_LIBRARY_ERROR,     "Failure to unload dynamic library"
    1.36 +ec PR_FIND_SYMBOL_ERROR,
    1.37 +"Symbol not found in any of the loaded dynamic libraries"
    1.38 +ec PR_INSUFFICIENT_RESOURCES_ERROR, "Insufficient system resources"
    1.39 +ec PR_DIRECTORY_LOOKUP_ERROR,
    1.40 +"A directory lookup on a network address has failed"
    1.41 +ec PR_TPD_RANGE_ERROR,
    1.42 +"Attempt to access a TPD key that is out of range"
    1.43 +ec PR_PROC_DESC_TABLE_FULL_ERROR, "Process open FD table is full"
    1.44 +ec PR_SYS_DESC_TABLE_FULL_ERROR, "System open FD table is full"
    1.45 +ec PR_NOT_SOCKET_ERROR,
    1.46 +"Network operation attempted on non-network file descriptor"
    1.47 +ec PR_NOT_TCP_SOCKET_ERROR,
    1.48 +"TCP-specific function attempted on a non-TCP file descriptor"
    1.49 +ec PR_SOCKET_ADDRESS_IS_BOUND_ERROR, "TCP file descriptor is already bound"
    1.50 +ec PR_NO_ACCESS_RIGHTS_ERROR, "Access Denied"
    1.51 +ec PR_OPERATION_NOT_SUPPORTED_ERROR,
    1.52 +"The requested operation is not supported by the platform"
    1.53 +ec PR_PROTOCOL_NOT_SUPPORTED_ERROR,
    1.54 +"The host operating system does not support the protocol requested"
    1.55 +ec PR_REMOTE_FILE_ERROR,        "Access to the remote file has been severed"
    1.56 +ec PR_BUFFER_OVERFLOW_ERROR,
    1.57 +"The value requested is too large to be stored in the data buffer provided"
    1.58 +ec PR_CONNECT_RESET_ERROR,      "TCP connection reset by peer"
    1.59 +ec PR_RANGE_ERROR,              "Unused"
    1.60 +ec PR_DEADLOCK_ERROR,   "The operation would have deadlocked"
    1.61 +ec PR_FILE_IS_LOCKED_ERROR,     "The file is already locked"
    1.62 +ec PR_FILE_TOO_BIG_ERROR,
    1.63 +"Write would result in file larger than the system allows"
    1.64 +ec PR_NO_DEVICE_SPACE_ERROR,    "The device for storing the file is full"
    1.65 +ec PR_PIPE_ERROR,               "Unused"
    1.66 +ec PR_NO_SEEK_DEVICE_ERROR,     "Unused"
    1.67 +ec PR_IS_DIRECTORY_ERROR,
    1.68 +"Cannot perform a normal file operation on a directory"
    1.69 +ec PR_LOOP_ERROR,               "Symbolic link loop"
    1.70 +ec PR_NAME_TOO_LONG_ERROR,      "File name is too long"
    1.71 +ec PR_FILE_NOT_FOUND_ERROR,     "File not found"
    1.72 +ec PR_NOT_DIRECTORY_ERROR,
    1.73 +"Cannot perform directory operation on a normal file"
    1.74 +ec PR_READ_ONLY_FILESYSTEM_ERROR,
    1.75 +"Cannot write to a read-only file system"
    1.76 +ec PR_DIRECTORY_NOT_EMPTY_ERROR,
    1.77 +"Cannot delete a directory that is not empty"
    1.78 +ec PR_FILESYSTEM_MOUNTED_ERROR,
    1.79 +"Cannot delete or rename a file object while the file system is busy"
    1.80 +ec PR_NOT_SAME_DEVICE_ERROR,
    1.81 +"Cannot rename a file to a file system on another device"
    1.82 +ec PR_DIRECTORY_CORRUPTED_ERROR,
    1.83 +"The directory object in the file system is corrupted"
    1.84 +ec PR_FILE_EXISTS_ERROR,
    1.85 +"Cannot create or rename a filename that already exists"
    1.86 +ec PR_MAX_DIRECTORY_ENTRIES_ERROR,
    1.87 +"Directory is full.  No additional filenames may be added"
    1.88 +ec PR_INVALID_DEVICE_STATE_ERROR,
    1.89 +"The required device was in an invalid state"
    1.90 +ec PR_DEVICE_IS_LOCKED_ERROR, "The device is locked"
    1.91 +ec PR_NO_MORE_FILES_ERROR,      "No more entries in the directory"
    1.92 +ec PR_END_OF_FILE_ERROR,        "Encountered end of file"
    1.93 +ec PR_FILE_SEEK_ERROR,  "Seek error"
    1.94 +ec PR_FILE_IS_BUSY_ERROR,       "The file is busy"
    1.95 +ec PR_OPERATION_ABORTED_ERROR,  "The I/O operation was aborted"
    1.96 +ec PR_IN_PROGRESS_ERROR,
    1.97 +"Operation is still in progress (probably a non-blocking connect)"
    1.98 +ec PR_ALREADY_INITIATED_ERROR,
    1.99 +"Operation has already been initiated (probably a non-blocking connect)"
   1.100 +ec PR_GROUP_EMPTY_ERROR,        "The wait group is empty"
   1.101 +ec PR_INVALID_STATE_ERROR,      "Object state improper for request"
   1.102 +ec PR_NETWORK_DOWN_ERROR,       "Network is down"
   1.103 +ec PR_SOCKET_SHUTDOWN_ERROR,    "Socket shutdown"
   1.104 +ec PR_CONNECT_ABORTED_ERROR,    "Connection aborted"
   1.105 +ec PR_HOST_UNREACHABLE_ERROR,   "Host is unreachable"
   1.106 +ec PR_LIBRARY_NOT_LOADED_ERROR, "The library is not loaded"
   1.107 +ec PR_CALL_ONCE_ERROR, "The one-time function was previously called and failed. Its error code is no longer available"
   1.108 +
   1.109 +ec PR_MAX_ERROR,                "Placeholder for the end of the list"
   1.110 +
   1.111 +end

mercurial