Home
last modified time | relevance | path

Searched refs:checkNoteAppOp (Results 1 – 1 of 1) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java2867 if (!checkNoteAppOp(STREAM_VOLUME_OPS[streamTypeAlias], uid, callingPackage)) { in adjustStreamVolume()
3590 if (!checkNoteAppOp(STREAM_VOLUME_OPS[streamTypeAlias], uid, callingPackage)) { in setStreamVolume()
4025 if (!mute && !checkNoteAppOp(AppOpsManager.OP_AUDIO_MASTER_VOLUME, uid, callingPackage)) { in setMasterMuteInternal()
4156 if (!on && !checkNoteAppOp(AppOpsManager.OP_MUTE_MICROPHONE, uid, callingPackage)) { in setMicrophoneMute()
10849 private boolean checkNoteAppOp(int op, int uid, String packageName) { in checkNoteAppOp() method in AudioService