1 /* 2 * Copyright (C) 2013 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 package com.android.internal.app; 18 19 import android.app.AppOpsManager; 20 import android.os.Bundle; 21 import com.android.internal.app.IAppOpsCallback; 22 23 interface IAppOpsService { 24 // These first methods are also called by native code, so must 25 // be kept in sync with frameworks/native/include/binder/IAppOpsService.h checkOperation(int code, int uid, String packageName)26 int checkOperation(int code, int uid, String packageName); noteOperation(int code, int uid, String packageName)27 int noteOperation(int code, int uid, String packageName); startOperation(IBinder token, int code, int uid, String packageName)28 int startOperation(IBinder token, int code, int uid, String packageName); finishOperation(IBinder token, int code, int uid, String packageName)29 void finishOperation(IBinder token, int code, int uid, String packageName); startWatchingMode(int op, String packageName, IAppOpsCallback callback)30 void startWatchingMode(int op, String packageName, IAppOpsCallback callback); stopWatchingMode(IAppOpsCallback callback)31 void stopWatchingMode(IAppOpsCallback callback); getToken(IBinder clientToken)32 IBinder getToken(IBinder clientToken); permissionToOpCode(String permission)33 int permissionToOpCode(String permission); noteProxyOperation(int code, String proxyPackageName, int callingUid, String callingPackageName)34 int noteProxyOperation(int code, String proxyPackageName, 35 int callingUid, String callingPackageName); 36 37 // Remaining methods are only used in Java. checkPackage(int uid, String packageName)38 int checkPackage(int uid, String packageName); getPackagesForOps(in int[] ops)39 List<AppOpsManager.PackageOps> getPackagesForOps(in int[] ops); getOpsForPackage(int uid, String packageName, in int[] ops)40 List<AppOpsManager.PackageOps> getOpsForPackage(int uid, String packageName, in int[] ops); setUidMode(int code, int uid, int mode)41 void setUidMode(int code, int uid, int mode); setMode(int code, int uid, String packageName, int mode)42 void setMode(int code, int uid, String packageName, int mode); resetAllModes(int reqUserId, String reqPackageName)43 void resetAllModes(int reqUserId, String reqPackageName); checkAudioOperation(int code, int usage, int uid, String packageName)44 int checkAudioOperation(int code, int usage, int uid, String packageName); setAudioRestriction(int code, int usage, int uid, int mode, in String[] exceptionPackages)45 void setAudioRestriction(int code, int usage, int uid, int mode, in String[] exceptionPackages); 46 setUserRestrictions(in Bundle restrictions, int userHandle)47 void setUserRestrictions(in Bundle restrictions, int userHandle); removeUser(int userHandle)48 void removeUser(int userHandle); 49 } 50