OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:granteeUid
(Results
1 - 7
of
7
) sorted by null
/frameworks/base/core/java/android/security/
IKeystoreService.aidl
51
int grant(String name, int
granteeUid
);
52
int ungrant(String name, int
granteeUid
);
/system/security/keystore/
keystore.h
76
void addGrant(const char* filename, uid_t
granteeUid
);
77
bool removeGrant(const char* filename, uid_t
granteeUid
);
key_store_service.h
80
int32_t grant(const String16& name, int32_t
granteeUid
);
81
int32_t ungrant(const String16& name, int32_t
granteeUid
);
keystore.cpp
390
void KeyStore::addGrant(const char* filename, uid_t
granteeUid
) {
391
const grant_t* existing = getGrant(filename,
granteeUid
);
394
grant->uid =
granteeUid
;
400
bool KeyStore::removeGrant(const char* filename, uid_t
granteeUid
) {
403
if (grant->uid ==
granteeUid
&&
IKeystoreService.cpp
859
virtual int32_t grant(const String16& name, int32_t
granteeUid
)
864
data.writeInt32(
granteeUid
);
879
virtual int32_t ungrant(const String16& name, int32_t
granteeUid
)
884
data.writeInt32(
granteeUid
);
[
all
...]
key_store_service.cpp
420
int32_t KeyStoreService::grant(const String16& name, int32_t
granteeUid
) {
434
mKeyStore->addGrant(filename.string(),
granteeUid
);
438
int32_t KeyStoreService::ungrant(const String16& name, int32_t
granteeUid
) {
452
return mKeyStore->removeGrant(filename.string(),
granteeUid
) ? ::NO_ERROR : ::KEY_NOT_FOUND;
[
all
...]
/system/security/keystore/include/keystore/
IKeystoreService.h
191
virtual int32_t grant(const String16& name, int32_t
granteeUid
) = 0;
193
virtual int32_t ungrant(const String16& name, int32_t
granteeUid
) = 0;
Completed in 114 milliseconds