Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | # |
michael@0 | 2 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 5 | |
michael@0 | 6 | et nspr -6000 |
michael@0 | 7 | |
michael@0 | 8 | ec PR_OUT_OF_MEMORY_ERROR, "Memory allocation attempt failed" |
michael@0 | 9 | ec PR_BAD_DESCRIPTOR_ERROR, "Invalid file descriptor" |
michael@0 | 10 | ec PR_WOULD_BLOCK_ERROR, "The operation would have blocked" |
michael@0 | 11 | ec PR_ACCESS_FAULT_ERROR, "Invalid memory address argument" |
michael@0 | 12 | ec PR_INVALID_METHOD_ERROR, "Invalid function for file type" |
michael@0 | 13 | ec PR_ILLEGAL_ACCESS_ERROR, "Invalid memory address argument" |
michael@0 | 14 | ec PR_UNKNOWN_ERROR, "Some unknown error has occurred" |
michael@0 | 15 | ec PR_PENDING_INTERRUPT_ERROR,"Operation interrupted by another thread" |
michael@0 | 16 | ec PR_NOT_IMPLEMENTED_ERROR, "function not implemented" |
michael@0 | 17 | ec PR_IO_ERROR, "I/O function error" |
michael@0 | 18 | ec PR_IO_TIMEOUT_ERROR, "I/O operation timed out" |
michael@0 | 19 | ec PR_IO_PENDING_ERROR, "I/O operation on busy file descriptor" |
michael@0 | 20 | ec PR_DIRECTORY_OPEN_ERROR, "The directory could not be opened" |
michael@0 | 21 | ec PR_INVALID_ARGUMENT_ERROR, "Invalid function argument" |
michael@0 | 22 | ec PR_ADDRESS_NOT_AVAILABLE_ERROR, "Network address not available (in use?)" |
michael@0 | 23 | ec PR_ADDRESS_NOT_SUPPORTED_ERROR, "Network address type not supported" |
michael@0 | 24 | ec PR_IS_CONNECTED_ERROR, "Already connected" |
michael@0 | 25 | ec PR_BAD_ADDRESS_ERROR, "Network address is invalid" |
michael@0 | 26 | ec PR_ADDRESS_IN_USE_ERROR, "Local Network address is in use" |
michael@0 | 27 | ec PR_CONNECT_REFUSED_ERROR, "Connection refused by peer" |
michael@0 | 28 | ec PR_NETWORK_UNREACHABLE_ERROR, "Network address is presently unreachable" |
michael@0 | 29 | ec PR_CONNECT_TIMEOUT_ERROR, "Connection attempt timed out" |
michael@0 | 30 | ec PR_NOT_CONNECTED_ERROR, "Network file descriptor is not connected" |
michael@0 | 31 | ec PR_LOAD_LIBRARY_ERROR, "Failure to load dynamic library" |
michael@0 | 32 | ec PR_UNLOAD_LIBRARY_ERROR, "Failure to unload dynamic library" |
michael@0 | 33 | ec PR_FIND_SYMBOL_ERROR, |
michael@0 | 34 | "Symbol not found in any of the loaded dynamic libraries" |
michael@0 | 35 | ec PR_INSUFFICIENT_RESOURCES_ERROR, "Insufficient system resources" |
michael@0 | 36 | ec PR_DIRECTORY_LOOKUP_ERROR, |
michael@0 | 37 | "A directory lookup on a network address has failed" |
michael@0 | 38 | ec PR_TPD_RANGE_ERROR, |
michael@0 | 39 | "Attempt to access a TPD key that is out of range" |
michael@0 | 40 | ec PR_PROC_DESC_TABLE_FULL_ERROR, "Process open FD table is full" |
michael@0 | 41 | ec PR_SYS_DESC_TABLE_FULL_ERROR, "System open FD table is full" |
michael@0 | 42 | ec PR_NOT_SOCKET_ERROR, |
michael@0 | 43 | "Network operation attempted on non-network file descriptor" |
michael@0 | 44 | ec PR_NOT_TCP_SOCKET_ERROR, |
michael@0 | 45 | "TCP-specific function attempted on a non-TCP file descriptor" |
michael@0 | 46 | ec PR_SOCKET_ADDRESS_IS_BOUND_ERROR, "TCP file descriptor is already bound" |
michael@0 | 47 | ec PR_NO_ACCESS_RIGHTS_ERROR, "Access Denied" |
michael@0 | 48 | ec PR_OPERATION_NOT_SUPPORTED_ERROR, |
michael@0 | 49 | "The requested operation is not supported by the platform" |
michael@0 | 50 | ec PR_PROTOCOL_NOT_SUPPORTED_ERROR, |
michael@0 | 51 | "The host operating system does not support the protocol requested" |
michael@0 | 52 | ec PR_REMOTE_FILE_ERROR, "Access to the remote file has been severed" |
michael@0 | 53 | ec PR_BUFFER_OVERFLOW_ERROR, |
michael@0 | 54 | "The value requested is too large to be stored in the data buffer provided" |
michael@0 | 55 | ec PR_CONNECT_RESET_ERROR, "TCP connection reset by peer" |
michael@0 | 56 | ec PR_RANGE_ERROR, "Unused" |
michael@0 | 57 | ec PR_DEADLOCK_ERROR, "The operation would have deadlocked" |
michael@0 | 58 | ec PR_FILE_IS_LOCKED_ERROR, "The file is already locked" |
michael@0 | 59 | ec PR_FILE_TOO_BIG_ERROR, |
michael@0 | 60 | "Write would result in file larger than the system allows" |
michael@0 | 61 | ec PR_NO_DEVICE_SPACE_ERROR, "The device for storing the file is full" |
michael@0 | 62 | ec PR_PIPE_ERROR, "Unused" |
michael@0 | 63 | ec PR_NO_SEEK_DEVICE_ERROR, "Unused" |
michael@0 | 64 | ec PR_IS_DIRECTORY_ERROR, |
michael@0 | 65 | "Cannot perform a normal file operation on a directory" |
michael@0 | 66 | ec PR_LOOP_ERROR, "Symbolic link loop" |
michael@0 | 67 | ec PR_NAME_TOO_LONG_ERROR, "File name is too long" |
michael@0 | 68 | ec PR_FILE_NOT_FOUND_ERROR, "File not found" |
michael@0 | 69 | ec PR_NOT_DIRECTORY_ERROR, |
michael@0 | 70 | "Cannot perform directory operation on a normal file" |
michael@0 | 71 | ec PR_READ_ONLY_FILESYSTEM_ERROR, |
michael@0 | 72 | "Cannot write to a read-only file system" |
michael@0 | 73 | ec PR_DIRECTORY_NOT_EMPTY_ERROR, |
michael@0 | 74 | "Cannot delete a directory that is not empty" |
michael@0 | 75 | ec PR_FILESYSTEM_MOUNTED_ERROR, |
michael@0 | 76 | "Cannot delete or rename a file object while the file system is busy" |
michael@0 | 77 | ec PR_NOT_SAME_DEVICE_ERROR, |
michael@0 | 78 | "Cannot rename a file to a file system on another device" |
michael@0 | 79 | ec PR_DIRECTORY_CORRUPTED_ERROR, |
michael@0 | 80 | "The directory object in the file system is corrupted" |
michael@0 | 81 | ec PR_FILE_EXISTS_ERROR, |
michael@0 | 82 | "Cannot create or rename a filename that already exists" |
michael@0 | 83 | ec PR_MAX_DIRECTORY_ENTRIES_ERROR, |
michael@0 | 84 | "Directory is full. No additional filenames may be added" |
michael@0 | 85 | ec PR_INVALID_DEVICE_STATE_ERROR, |
michael@0 | 86 | "The required device was in an invalid state" |
michael@0 | 87 | ec PR_DEVICE_IS_LOCKED_ERROR, "The device is locked" |
michael@0 | 88 | ec PR_NO_MORE_FILES_ERROR, "No more entries in the directory" |
michael@0 | 89 | ec PR_END_OF_FILE_ERROR, "Encountered end of file" |
michael@0 | 90 | ec PR_FILE_SEEK_ERROR, "Seek error" |
michael@0 | 91 | ec PR_FILE_IS_BUSY_ERROR, "The file is busy" |
michael@0 | 92 | ec PR_OPERATION_ABORTED_ERROR, "The I/O operation was aborted" |
michael@0 | 93 | ec PR_IN_PROGRESS_ERROR, |
michael@0 | 94 | "Operation is still in progress (probably a non-blocking connect)" |
michael@0 | 95 | ec PR_ALREADY_INITIATED_ERROR, |
michael@0 | 96 | "Operation has already been initiated (probably a non-blocking connect)" |
michael@0 | 97 | ec PR_GROUP_EMPTY_ERROR, "The wait group is empty" |
michael@0 | 98 | ec PR_INVALID_STATE_ERROR, "Object state improper for request" |
michael@0 | 99 | ec PR_NETWORK_DOWN_ERROR, "Network is down" |
michael@0 | 100 | ec PR_SOCKET_SHUTDOWN_ERROR, "Socket shutdown" |
michael@0 | 101 | ec PR_CONNECT_ABORTED_ERROR, "Connection aborted" |
michael@0 | 102 | ec PR_HOST_UNREACHABLE_ERROR, "Host is unreachable" |
michael@0 | 103 | ec PR_LIBRARY_NOT_LOADED_ERROR, "The library is not loaded" |
michael@0 | 104 | ec PR_CALL_ONCE_ERROR, "The one-time function was previously called and failed. Its error code is no longer available" |
michael@0 | 105 | |
michael@0 | 106 | ec PR_MAX_ERROR, "Placeholder for the end of the list" |
michael@0 | 107 | |
michael@0 | 108 | end |