/**@class android.app.AppOpsManagerInternal
@extends java.lang.Object

 App ops service local interface.

 @hide Only for use within the system server.
*/
var AppOpsManagerInternal = {

/**Set the currently configured device and profile owners.  Specifies the package uid (value)
 that has been configured for each user (key) that has one.  These will be allowed privileged
 access to app ops for their user.
*/
setDeviceAndProfileOwners : function(  ) {},

/**Sets the app-ops mode for a certain app-op and uid.

 <p>Similar as {@link android.app.AppOpsManager#setUidMode} but does not require the package manager to be
 working. Hence this can be used very early during boot.

 <p>Only for internal callers. Does <u>not</u> verify that package name belongs to uid.
@param {Number} code The op code to set.
@param {Number} uid The UID for which to set.
@param {Number} mode The new mode to set.
*/
setUidMode : function(  ) {},

/**Set all {@link #setMode (package) modes} for this uid to the default value.
@param {Number} code The app-op
@param {Number} uid The uid
*/
setAllPkgModesToDefault : function(  ) {},

/**Get the (raw) mode of an app-op.

 <p>Does <u>not</u> verify that package belongs to uid. The caller needs to do that.
@param {Number} code The code of the op
@param {Number} uid The uid of the package the op belongs to
@param {String} packageName The package the op belongs to
@return {Number} The mode of the op
*/
checkOperationUnchecked : function(  ) {},


};