mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-22 12:05:32 -04:00
29 lines
No EOL
1,006 B
C++
29 lines
No EOL
1,006 B
C++
#include <vendor/eureka/security/selinux/1.0/ISELinux.h>
|
|
#include <hidl/Status.h>
|
|
#include <hidl/LegacySupport.h>
|
|
#include <hardware/hardware.h>
|
|
#include <hidl/HidlSupport.h>
|
|
#include "jni.h"
|
|
|
|
using vendor::eureka::security::selinux::V1_0::ISELinux;
|
|
using vendor::eureka::security::selinux::V1_0::Enable;
|
|
using android::sp;
|
|
|
|
extern "C"
|
|
JNIEXPORT jint JNICALL
|
|
Java_com_eurekateam_samsungextras_interfaces_SELinux_getSELinux(JNIEnv *env, jclass clazz) {
|
|
android::sp<ISELinux> service = ISELinux::getService();
|
|
int ret = service->readSELinuxstats();
|
|
return ret;
|
|
}
|
|
extern "C"
|
|
JNIEXPORT void JNICALL
|
|
Java_com_eurekateam_samsungextras_interfaces_SELinux_setSELinux(JNIEnv *env, jclass clazz,
|
|
jint enable) {
|
|
android::sp<ISELinux> service = ISELinux::getService();
|
|
if (enable == 1){
|
|
service->setSELinuxWritable(Enable::ENABLE);
|
|
}else{
|
|
service->setSELinuxWritable(Enable::DISABLE);
|
|
}
|
|
} |