Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 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 _CHECKPOINT_H |
| 18 | #define _CHECKPOINT_H |
| 19 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame^] | 20 | #include <binder/Status.h> |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 21 | #include <string> |
| 22 | |
| 23 | namespace android { |
| 24 | namespace vold { |
| 25 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame^] | 26 | android::binder::Status cp_startCheckpoint(int retry); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 27 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame^] | 28 | android::binder::Status cp_commitChanges(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 29 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame^] | 30 | android::binder::Status cp_abortChanges(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 31 | |
Daniel Rosenberg | d399249 | 2018-10-02 17:40:44 -0700 | [diff] [blame] | 32 | bool cp_needsRollback(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 33 | |
| 34 | bool cp_needsCheckpoint(); |
| 35 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame^] | 36 | android::binder::Status cp_prepareCheckpoint(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 37 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame^] | 38 | android::binder::Status cp_restoreCheckpoint(const std::string& mountPoint); |
Paul Lawrence | 1abb2fe | 2018-09-21 10:49:57 -0700 | [diff] [blame] | 39 | |
Daniel Rosenberg | 73680ec | 2018-10-10 18:52:04 -0700 | [diff] [blame^] | 40 | android::binder::Status cp_markBootAttempt(); |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 41 | |
| 42 | } // namespace vold |
| 43 | } // namespace android |
| 44 | |
| 45 | #endif |