Lines Matching refs:op
68 int32_t AppOpsManager::checkOp(int32_t op, int32_t uid, const String16& callingPackage)
71 return service != NULL ? service->checkOperation(op, uid, callingPackage) : MODE_IGNORED;
74 int32_t AppOpsManager::noteOp(int32_t op, int32_t uid, const String16& callingPackage) {
76 return service != NULL ? service->noteOperation(op, uid, callingPackage) : MODE_IGNORED;
79 int32_t AppOpsManager::startOp(int32_t op, int32_t uid, const String16& callingPackage) {
81 return service != NULL ? service->startOperation(getToken(service), op, uid, callingPackage)
85 void AppOpsManager::finishOp(int32_t op, int32_t uid, const String16& callingPackage) {
88 service->finishOperation(getToken(service), op, uid, callingPackage);
92 void AppOpsManager::startWatchingMode(int32_t op, const String16& packageName,
96 service->startWatchingMode(op, packageName, callback);