Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(332)

Side by Side Diff: nss/lib/base/errorval.c

Issue 1843333003: Update NSPR to 4.12 and NSS to 3.23 on iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/nss.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* This Source Code Form is subject to the terms of the Mozilla Public 1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 4
5 /* 5 /*
6 * errorval.c 6 * errorval.c
7 * 7 *
8 * This file contains the actual error constants used in NSS. 8 * This file contains the actual error constants used in NSS.
9 */ 9 */
10 10
11 #ifndef NSSBASET_H 11 #ifndef NSSBASET_H
12 #include "nssbaset.h" 12 #include "nssbaset.h"
13 #endif /* NSSBASET_H */ 13 #endif /* NSSBASET_H */
14 14
15 /* clang-format off */
16
15 const NSSError NSS_ERROR_NO_ERROR = 0; 17 const NSSError NSS_ERROR_NO_ERROR = 0;
16 const NSSError NSS_ERROR_INTERNAL_ERROR = 1; 18 const NSSError NSS_ERROR_INTERNAL_ERROR = 1;
17 const NSSError NSS_ERROR_NO_MEMORY = 2; 19 const NSSError NSS_ERROR_NO_MEMORY = 2;
18 const NSSError NSS_ERROR_INVALID_POINTER = 3; 20 const NSSError NSS_ERROR_INVALID_POINTER = 3;
19 const NSSError NSS_ERROR_INVALID_ARENA = 4; 21 const NSSError NSS_ERROR_INVALID_ARENA = 4;
20 const NSSError NSS_ERROR_INVALID_ARENA_MARK = 5; 22 const NSSError NSS_ERROR_INVALID_ARENA_MARK = 5;
21 const NSSError NSS_ERROR_DUPLICATE_POINTER = 6; 23 const NSSError NSS_ERROR_DUPLICATE_POINTER = 6;
22 const NSSError NSS_ERROR_POINTER_NOT_REGISTERED = 7; 24 const NSSError NSS_ERROR_POINTER_NOT_REGISTERED = 7;
23 const NSSError NSS_ERROR_TRACKER_NOT_EMPTY = 8; 25 const NSSError NSS_ERROR_TRACKER_NOT_EMPTY = 8;
24 const NSSError NSS_ERROR_TRACKER_NOT_INITIALIZED = 9; 26 const NSSError NSS_ERROR_TRACKER_NOT_INITIALIZED = 9;
(...skipping 28 matching lines...) Expand all
53 const NSSError NSS_ERROR_CERTIFICATE_IN_CACHE = 32; 55 const NSSError NSS_ERROR_CERTIFICATE_IN_CACHE = 32;
54 56
55 const NSSError NSS_ERROR_HASH_COLLISION = 33; 57 const NSSError NSS_ERROR_HASH_COLLISION = 33;
56 const NSSError NSS_ERROR_DEVICE_ERROR = 34; 58 const NSSError NSS_ERROR_DEVICE_ERROR = 34;
57 const NSSError NSS_ERROR_INVALID_CERTIFICATE = 35; 59 const NSSError NSS_ERROR_INVALID_CERTIFICATE = 35;
58 const NSSError NSS_ERROR_BUSY = 36; 60 const NSSError NSS_ERROR_BUSY = 36;
59 const NSSError NSS_ERROR_ALREADY_INITIALIZED = 37; 61 const NSSError NSS_ERROR_ALREADY_INITIALIZED = 37;
60 62
61 const NSSError NSS_ERROR_PKCS11 = 38; 63 const NSSError NSS_ERROR_PKCS11 = 38;
62 64
65 /* clang-format on */
OLDNEW
« no previous file with comments | « nss/lib/base/error.c ('k') | nss/lib/base/hash.c » ('j') | nss/lib/util/secoid.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698