/security/nss/lib/base/errorval.c

http://github.com/zpao/v8monkey · C · 98 lines · 45 code · 13 blank · 40 comment · 0 complexity · db85ee69a59fecfdb55f58680af1d72d MD5 · raw file

  1. /* ***** BEGIN LICENSE BLOCK *****
  2. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. *
  4. * The contents of this file are subject to the Mozilla Public License Version
  5. * 1.1 (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. * http://www.mozilla.org/MPL/
  8. *
  9. * Software distributed under the License is distributed on an "AS IS" basis,
  10. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. * for the specific language governing rights and limitations under the
  12. * License.
  13. *
  14. * The Original Code is the Netscape security libraries.
  15. *
  16. * The Initial Developer of the Original Code is
  17. * Netscape Communications Corporation.
  18. * Portions created by the Initial Developer are Copyright (C) 1994-2000
  19. * the Initial Developer. All Rights Reserved.
  20. *
  21. * Contributor(s):
  22. *
  23. * Alternatively, the contents of this file may be used under the terms of
  24. * either the GNU General Public License Version 2 or later (the "GPL"), or
  25. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26. * in which case the provisions of the GPL or the LGPL are applicable instead
  27. * of those above. If you wish to allow use of your version of this file only
  28. * under the terms of either the GPL or the LGPL, and not to allow others to
  29. * use your version of this file under the terms of the MPL, indicate your
  30. * decision by deleting the provisions above and replace them with the notice
  31. * and other provisions required by the GPL or the LGPL. If you do not delete
  32. * the provisions above, a recipient may use your version of this file under
  33. * the terms of any one of the MPL, the GPL or the LGPL.
  34. *
  35. * ***** END LICENSE BLOCK ***** */
  36. #ifdef DEBUG
  37. static const char CVS_ID[] = "@(#) $RCSfile: errorval.c,v $ $Revision: 1.12 $ $Date: 2007/08/09 22:36:15 $";
  38. #endif /* DEBUG */
  39. /*
  40. * errorval.c
  41. *
  42. * This file contains the actual error constants used in NSS.
  43. */
  44. #ifndef NSSBASET_H
  45. #include "nssbaset.h"
  46. #endif /* NSSBASET_H */
  47. const NSSError NSS_ERROR_NO_ERROR = 0;
  48. const NSSError NSS_ERROR_INTERNAL_ERROR = 1;
  49. const NSSError NSS_ERROR_NO_MEMORY = 2;
  50. const NSSError NSS_ERROR_INVALID_POINTER = 3;
  51. const NSSError NSS_ERROR_INVALID_ARENA = 4;
  52. const NSSError NSS_ERROR_INVALID_ARENA_MARK = 5;
  53. const NSSError NSS_ERROR_DUPLICATE_POINTER = 6;
  54. const NSSError NSS_ERROR_POINTER_NOT_REGISTERED = 7;
  55. const NSSError NSS_ERROR_TRACKER_NOT_EMPTY = 8;
  56. const NSSError NSS_ERROR_TRACKER_NOT_INITIALIZED = 9;
  57. const NSSError NSS_ERROR_ARENA_MARKED_BY_ANOTHER_THREAD = 10;
  58. const NSSError NSS_ERROR_VALUE_TOO_LARGE = 11;
  59. const NSSError NSS_ERROR_UNSUPPORTED_TYPE = 12;
  60. const NSSError NSS_ERROR_BUFFER_TOO_SHORT = 13;
  61. const NSSError NSS_ERROR_INVALID_ATOB_CONTEXT = 14;
  62. const NSSError NSS_ERROR_INVALID_BASE64 = 15;
  63. const NSSError NSS_ERROR_INVALID_BTOA_CONTEXT = 16;
  64. const NSSError NSS_ERROR_INVALID_ITEM = 17;
  65. const NSSError NSS_ERROR_INVALID_STRING = 18;
  66. const NSSError NSS_ERROR_INVALID_ASN1ENCODER = 19;
  67. const NSSError NSS_ERROR_INVALID_ASN1DECODER = 20;
  68. const NSSError NSS_ERROR_INVALID_BER = 21;
  69. const NSSError NSS_ERROR_INVALID_ATAV = 22;
  70. const NSSError NSS_ERROR_INVALID_ARGUMENT = 23;
  71. const NSSError NSS_ERROR_INVALID_UTF8 = 24;
  72. const NSSError NSS_ERROR_INVALID_NSSOID = 25;
  73. const NSSError NSS_ERROR_UNKNOWN_ATTRIBUTE = 26;
  74. const NSSError NSS_ERROR_NOT_FOUND = 27;
  75. const NSSError NSS_ERROR_INVALID_PASSWORD = 28;
  76. const NSSError NSS_ERROR_USER_CANCELED = 29;
  77. const NSSError NSS_ERROR_MAXIMUM_FOUND = 30;
  78. const NSSError NSS_ERROR_CERTIFICATE_ISSUER_NOT_FOUND = 31;
  79. const NSSError NSS_ERROR_CERTIFICATE_IN_CACHE = 32;
  80. const NSSError NSS_ERROR_HASH_COLLISION = 33;
  81. const NSSError NSS_ERROR_DEVICE_ERROR = 34;
  82. const NSSError NSS_ERROR_INVALID_CERTIFICATE = 35;
  83. const NSSError NSS_ERROR_BUSY = 36;
  84. const NSSError NSS_ERROR_ALREADY_INITIALIZED = 37;
  85. const NSSError NSS_ERROR_PKCS11 = 38;