ConfigurationManager gains checkSELinuxPermission (reads /proc/pid/attr) and hasPermissionForUid (delegates to IPackageManager.checkPermission) for AOSP-compliant access control. TeeLatencySimulator provides log-normal distribution matching real QTEE/Trustonic hardware timing profiles. Module customize.sh now generates a device-unique hardware-bound key seed (32 bytes from /dev/random) and clears stale tee_status.txt on install.
28 lines
765 B
Java
28 lines
765 B
Java
package android.os;
|
|
|
|
public class ServiceManager {
|
|
public static IBinder getService(String name) {
|
|
throw new UnsupportedOperationException("STUB!");
|
|
}
|
|
|
|
public static IBinder waitForService(String name) {
|
|
throw new UnsupportedOperationException("STUB!");
|
|
}
|
|
|
|
public static void addService(String name, IBinder binder) {
|
|
throw new UnsupportedOperationException("STUB!");
|
|
}
|
|
|
|
public static IBinder checkService(String name) {
|
|
throw new UnsupportedOperationException("STUB!");
|
|
}
|
|
|
|
public static boolean isDeclared(String name) {
|
|
throw new UnsupportedOperationException("STUB!");
|
|
}
|
|
|
|
public static String[] listServices() {
|
|
throw new UnsupportedOperationException("STUB!");
|
|
}
|
|
}
|