| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2017 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 |  | 
| Vic Yang | 92c236e | 2019-05-28 15:58:35 -0700 | [diff] [blame] | 17 | #pragma once | 
| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 18 |  | 
|  | 19 | namespace android { | 
|  | 20 | namespace init { | 
|  | 21 |  | 
| Tom Cherry | 7bfea3d | 2018-11-06 14:12:05 -0800 | [diff] [blame] | 22 | int SetupSelinux(char** argv); | 
| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 23 | void SelinuxRestoreContext(); | 
|  | 24 |  | 
|  | 25 | void SelinuxSetupKernelLogging(); | 
| Tom Cherry | 40acb37 | 2018-08-01 13:41:12 -0700 | [diff] [blame] | 26 | int SelinuxGetVendorAndroidVersion(); | 
| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 27 |  | 
| Mark Salyzyn | 44505ec | 2019-05-08 12:44:50 -0700 | [diff] [blame] | 28 | static constexpr char kEnvSelinuxStartedAt[] = "SELINUX_STARTED_AT"; | 
|  | 29 |  | 
| Tom Cherry | c3692b3 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 30 | }  // namespace init | 
|  | 31 | }  // namespace android |