NSPRerrs.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:5k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* General NSPR 2.0 errors */
  2. /* Caller must #include "prerror.h" */
  3. ER2( PR_OUT_OF_MEMORY_ERROR,  "Memory allocation attempt failed." )
  4. ER2( PR_BAD_DESCRIPTOR_ERROR,  "Invalid file descriptor." )
  5. ER2( PR_WOULD_BLOCK_ERROR,  "The operation would have blocked." )
  6. ER2( PR_ACCESS_FAULT_ERROR,  "Invalid memory address argument." )
  7. ER2( PR_INVALID_METHOD_ERROR,  "Invalid function for file type." )
  8. ER2( PR_ILLEGAL_ACCESS_ERROR,  "Invalid memory address argument." )
  9. ER2( PR_UNKNOWN_ERROR,  "Some unknown error has occurred." )
  10. ER2( PR_PENDING_INTERRUPT_ERROR,"Operation interrupted by another thread." )
  11. ER2( PR_NOT_IMPLEMENTED_ERROR,  "function not implemented." )
  12. ER2( PR_IO_ERROR,  "I/O function error." )
  13. ER2( PR_IO_TIMEOUT_ERROR,  "I/O operation timed out." )
  14. ER2( PR_IO_PENDING_ERROR,  "I/O operation on busy file descriptor." )
  15. ER2( PR_DIRECTORY_OPEN_ERROR,  "The directory could not be opened." )
  16. ER2( PR_INVALID_ARGUMENT_ERROR, "Invalid function argument." )
  17. ER2( PR_ADDRESS_NOT_AVAILABLE_ERROR, "Network address not available (in use?)." )
  18. ER2( PR_ADDRESS_NOT_SUPPORTED_ERROR, "Network address type not supported." )
  19. ER2( PR_IS_CONNECTED_ERROR,  "Already connected." )
  20. ER2( PR_BAD_ADDRESS_ERROR,  "Network address is invalid." )
  21. ER2( PR_ADDRESS_IN_USE_ERROR,  "Local Network address is in use." )
  22. ER2( PR_CONNECT_REFUSED_ERROR,  "Connection refused by peer." )
  23. ER2( PR_NETWORK_UNREACHABLE_ERROR, "Network address is presently unreachable." )
  24. ER2( PR_CONNECT_TIMEOUT_ERROR,  "Connection attempt timed out." )
  25. ER2( PR_NOT_CONNECTED_ERROR,  "Network file descriptor is not connected." )
  26. ER2( PR_LOAD_LIBRARY_ERROR,  "Failure to load dynamic library." )
  27. ER2( PR_UNLOAD_LIBRARY_ERROR,  "Failure to unload dynamic library." )
  28. ER2( PR_FIND_SYMBOL_ERROR, 
  29. "Symbol not found in any of the loaded dynamic libraries." )
  30. ER2( PR_INSUFFICIENT_RESOURCES_ERROR, "Insufficient system resources." )
  31. ER2( PR_DIRECTORY_LOOKUP_ERROR, 
  32. "A directory lookup on a network address has failed." )
  33. ER2( PR_TPD_RANGE_ERROR, 
  34. "Attempt to access a TPD key that is out of range." )
  35. ER2( PR_PROC_DESC_TABLE_FULL_ERROR, "Process open FD table is full." )
  36. ER2( PR_SYS_DESC_TABLE_FULL_ERROR, "System open FD table is full." )
  37. ER2( PR_NOT_SOCKET_ERROR, 
  38. "Network operation attempted on non-network file descriptor." )
  39. ER2( PR_NOT_TCP_SOCKET_ERROR, 
  40. "TCP-specific function attempted on a non-TCP file descriptor." )
  41. ER2( PR_SOCKET_ADDRESS_IS_BOUND_ERROR, "TCP file descriptor is already bound." )
  42. ER2( PR_NO_ACCESS_RIGHTS_ERROR, "Access Denied." )
  43. ER2( PR_OPERATION_NOT_SUPPORTED_ERROR, 
  44. "The requested operation is not supported by the platform." )
  45. ER2( PR_PROTOCOL_NOT_SUPPORTED_ERROR, 
  46. "The host operating system does not support the protocol requested." )
  47. ER2( PR_REMOTE_FILE_ERROR,  "Access to the remote file has been severed." )
  48. ER2( PR_BUFFER_OVERFLOW_ERROR, 
  49. "The value requested is too large to be stored in the data buffer provided." )
  50. ER2( PR_CONNECT_RESET_ERROR,  "TCP connection reset by peer." )
  51. ER2( PR_RANGE_ERROR,  "Unused." )
  52. ER2( PR_DEADLOCK_ERROR,  "The operation would have deadlocked." )
  53. ER2( PR_FILE_IS_LOCKED_ERROR,  "The file is already locked." )
  54. ER2( PR_FILE_TOO_BIG_ERROR, 
  55. "Write would result in file larger than the system allows." )
  56. ER2( PR_NO_DEVICE_SPACE_ERROR,  "The device for storing the file is full." )
  57. ER2( PR_PIPE_ERROR,  "Unused." )
  58. ER2( PR_NO_SEEK_DEVICE_ERROR,  "Unused." )
  59. ER2( PR_IS_DIRECTORY_ERROR, 
  60. "Cannot perform a normal file operation on a directory." )
  61. ER2( PR_LOOP_ERROR,  "Symbolic link loop." )
  62. ER2( PR_NAME_TOO_LONG_ERROR,  "File name is too long." )
  63. ER2( PR_FILE_NOT_FOUND_ERROR,  "File not found." )
  64. ER2( PR_NOT_DIRECTORY_ERROR, 
  65. "Cannot perform directory operation on a normal file." )
  66. ER2( PR_READ_ONLY_FILESYSTEM_ERROR, 
  67. "Cannot write to a read-only file system." )
  68. ER2( PR_DIRECTORY_NOT_EMPTY_ERROR, 
  69. "Cannot delete a directory that is not empty." )
  70. ER2( PR_FILESYSTEM_MOUNTED_ERROR, 
  71. "Cannot delete or rename a file object while the file system is busy." )
  72. ER2( PR_NOT_SAME_DEVICE_ERROR, 
  73. "Cannot rename a file to a file system on another device." )
  74. ER2( PR_DIRECTORY_CORRUPTED_ERROR, 
  75. "The directory object in the file system is corrupted." )
  76. ER2( PR_FILE_EXISTS_ERROR, 
  77. "Cannot create or rename a filename that already exists." )
  78. ER2( PR_MAX_DIRECTORY_ENTRIES_ERROR, 
  79. "Directory is full.  No additional filenames may be added." )
  80. ER2( PR_INVALID_DEVICE_STATE_ERROR, 
  81. "The required device was in an invalid state." )
  82. ER2( PR_DEVICE_IS_LOCKED_ERROR, "The device is locked." )
  83. ER2( PR_NO_MORE_FILES_ERROR,  "No more entries in the directory." )
  84. ER2( PR_END_OF_FILE_ERROR,  "Encountered end of file." )
  85. ER2( PR_FILE_SEEK_ERROR,  "Seek error." )
  86. ER2( PR_FILE_IS_BUSY_ERROR,  "The file is busy." )
  87. ER2( PR_IN_PROGRESS_ERROR,
  88. "Operation is still in progress (probably a non-blocking connect)." )
  89. ER2( PR_ALREADY_INITIATED_ERROR,
  90. "Operation has already been initiated (probably a non-blocking connect)." )
  91. #ifdef PR_GROUP_EMPTY_ERROR
  92. ER2( PR_GROUP_EMPTY_ERROR,  "The wait group is empty." )
  93. #endif
  94. #ifdef PR_INVALID_STATE_ERROR
  95. ER2( PR_INVALID_STATE_ERROR,  "Object state improper for request." )
  96. #endif
  97. ER2( PR_MAX_ERROR,  "Placeholder for the end of the list" )