/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 266 public boolean grant(String key, int uid) { method in class:KeyStore 268 return mBinder.grant(key, uid) == NO_ERROR;
|
/frameworks/base/core/java/android/security/ |
IKeystoreService.java | 370 public int grant(String name, int granteeUid) throws RemoteException { method in class:IKeystoreService.Stub.Proxy 588 public int grant(String name, int granteeUid) throws RemoteException; method in interface:IKeystoreService
|
/system/security/keystore/ |
IKeystoreService.cpp | 463 virtual int32_t grant(const String16& name, int32_t granteeUid) function in class:android::BpKeystoreService 469 status_t status = remote()->transact(BnKeystoreService::GRANT, data, &reply); 471 ALOGD("grant() could not contact remote: %d\n", status); 477 ALOGD("grant() caught exception %d\n", err); 825 case GRANT: { 829 int32_t ret = grant(name, granteeUid);
|
keystore.cpp | 1052 grant_t* grant = new grant_t; local 1053 grant->uid = granteeUid; 1054 grant->filename = reinterpret_cast<const uint8_t*>(strdup(filename)); 1055 mGrants.add(grant); 1062 grant_t* grant = *it; local 1063 if (grant->uid == granteeUid 1064 && !strcmp(reinterpret_cast<const char*>(grant->filename), filename)) { 1226 grant_t* grant = *it; local 2088 int32_t grant(const String16& name, int32_t granteeUid) { function in class:android::KeyStoreProxy [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.osgi_3.6.1.R36x_v20100806.jar | |
org.eclipse.osgi_3.6.2.R36x_v20101103.jar | |
/prebuilts/tools/common/eclipse/ |
org.eclipse.osgi_3.6.2.R36x_v20110210.jar | |