Searched defs:granted (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/include/binder/
H A DPermissionCache.h45 bool granted; member in struct:android::PermissionCache::Entry
60 status_t check(bool* granted,
63 void cache(const String16& permission, uid_t uid, bool granted);
/frameworks/native/libs/binder/
H A DPermissionCache.cpp37 status_t PermissionCache::check(bool* granted, argument
45 *granted = mCache.itemAt(index).granted;
52 uid_t uid, bool granted) {
65 e.granted = granted;
99 bool granted = false; local
100 if (pc.check(&granted, permission, uid) != NO_ERROR) {
102 granted = android::checkPermission(permission, pid, uid);
106 granted
51 cache(const String16& permission, uid_t uid, bool granted) argument
[all...]

Completed in 311 milliseconds