OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:granteeUid
(Results
1 - 4
of
4
) sorted by null
/system/security/keystore/include/keystore/
IKeystoreService.h
111
virtual int32_t grant(const String16& name, int32_t
granteeUid
) = 0;
113
virtual int32_t ungrant(const String16& name, int32_t
granteeUid
) = 0;
/frameworks/base/core/java/android/security/
IKeystoreService.java
370
public int grant(String name, int
granteeUid
) throws RemoteException {
377
_data.writeInt(
granteeUid
);
388
public int ungrant(String name, int
granteeUid
) throws RemoteException {
395
_data.writeInt(
granteeUid
);
588
public int grant(String name, int
granteeUid
) throws RemoteException;
590
public int ungrant(String name, int
granteeUid
) throws RemoteException;
/system/security/keystore/
IKeystoreService.cpp
463
virtual int32_t grant(const String16& name, int32_t
granteeUid
)
468
data.writeInt32(
granteeUid
);
483
virtual int32_t ungrant(const String16& name, int32_t
granteeUid
)
488
data.writeInt32(
granteeUid
);
828
int32_t
granteeUid
= data.readInt32();
829
int32_t ret = grant(name,
granteeUid
);
837
int32_t
granteeUid
= data.readInt32();
838
int32_t ret = ungrant(name,
granteeUid
);
keystore.cpp
1049
void addGrant(const char* filename, uid_t
granteeUid
) {
1050
const grant_t* existing = getGrant(filename,
granteeUid
);
1053
grant->uid =
granteeUid
;
1059
bool removeGrant(const char* filename, uid_t
granteeUid
) {
1063
if (grant->uid ==
granteeUid
[
all
...]
Completed in 169 milliseconds