blob: 5dad6b263f25ad5286c42c029b9387a5118eea84 [file] [log] [blame]
Tianjie Xu16255832016-04-30 11:49:59 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _ERROR_CODE_H_
18#define _ERROR_CODE_H_
19
20enum ErrorCode {
Tao Baoef0eb3b2016-11-14 21:29:52 -080021 kNoError = -1,
22 kLowBattery = 20,
23 kZipVerificationFailure,
24 kZipOpenFailure,
25 kBootreasonInBlacklist
Tianjie Xu16255832016-04-30 11:49:59 -070026};
27
28enum CauseCode {
Tao Baoef0eb3b2016-11-14 21:29:52 -080029 kNoCause = -1,
30 kArgsParsingFailure = 100,
31 kStashCreationFailure,
32 kFileOpenFailure,
33 kLseekFailure,
34 kFreadFailure,
35 kFwriteFailure,
36 kFsyncFailure,
37 kLibfecFailure,
38 kFileGetPropFailure,
39 kFileRenameFailure,
40 kSymlinkFailure,
41 kSetMetadataFailure,
42 kTune2FsFailure,
43 kRebootFailure,
44 kPackageExtractFileFailure,
45 kVendorFailure = 200
Tianjie Xu16255832016-04-30 11:49:59 -070046};
47
Tianjie Xuda44cf12016-09-24 15:31:34 -070048enum UncryptErrorCode {
Tao Baoef0eb3b2016-11-14 21:29:52 -080049 kUncryptNoError = -1,
Tao Baof83101a2016-11-15 23:13:24 -080050 kUncryptErrorPlaceholder = 50,
Tao Baoef0eb3b2016-11-14 21:29:52 -080051 kUncryptTimeoutError = 100,
52 kUncryptFileRemoveError,
53 kUncryptFileOpenError,
54 kUncryptSocketOpenError,
55 kUncryptSocketWriteError,
56 kUncryptSocketListenError,
57 kUncryptSocketAcceptError,
58 kUncryptFstabReadError,
59 kUncryptFileStatError,
60 kUncryptBlockOpenError,
61 kUncryptIoctlError,
62 kUncryptReadError,
63 kUncryptWriteError,
64 kUncryptFileSyncError,
65 kUncryptFileCloseError,
66 kUncryptFileRenameError,
67 kUncryptPackageMissingError,
Tianjie Xuda44cf12016-09-24 15:31:34 -070068};
69
Tao Baoef0eb3b2016-11-14 21:29:52 -080070#endif // _ERROR_CODE_H_