HomeSort by relevance Sort by last modified time
    Searched refs:noteOperation (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/com/android/internal/app/
IAppOpsService.aidl 26 int noteOperation(int code, int uid, String packageName);
  /frameworks/native/include/binder/
IAppOpsService.h 34 virtual int32_t noteOperation(int32_t code, int32_t uid, const String16& packageName) = 0;
  /frameworks/native/libs/binder/
AppOpsManager.cpp 64 return service != NULL ? service->noteOperation(op, uid, callingPackage) : MODE_IGNORED;
IAppOpsService.cpp 52 virtual int32_t noteOperation(int32_t code, int32_t uid, const String16& packageName) {
127 int32_t res = noteOperation(code, uid, packageName);
  /frameworks/base/core/java/android/app/
AppOpsManager.java 485 int mode = mService.noteOperation(op, uid, packageName);
497 return mService.noteOperation(op, uid, packageName);
  /frameworks/base/services/java/com/android/server/
AppOpsService.java 490 public int noteOperation(int code, int uid, String packageName) {
496 if (DEBUG) Log.d(TAG, "noteOperation: no op for code " + code + " uid " + uid
509 if (DEBUG) Log.d(TAG, "noteOperation: reject #" + op.mode + " for code "
514 if (DEBUG) Log.d(TAG, "noteOperation: allowing code " + code + " uid " + uid
    [all...]

Completed in 246 milliseconds