/frameworks/base/core/java/android/security/ |
IKeystoreService.java | 335 public byte[] get_pubkey(String name) throws RemoteException { method in class:IKeystoreService.Stub.Proxy 584 public byte[] get_pubkey(String name) throws RemoteException; method in interface:IKeystoreService
|
/system/security/keystore/ |
IKeystoreService.cpp | 410 virtual int32_t get_pubkey(const String16& name, uint8_t** pubkey, size_t* pubkeyLength) function in class:android::BpKeystoreService 415 status_t status = remote()->transact(BnKeystoreService::GET_PUBKEY, data, &reply); 417 ALOGD("get_pubkey() could not contact remote: %d\n", status); 430 ALOGE("out of memory allocating output array in get_pubkey"); 437 ALOGD("get_pubkey() caught exception %d\n", err); 798 case GET_PUBKEY: { 803 int32_t ret = get_pubkey(name, (unsigned char**) &out, &outSize);
|
keystore.cpp | 2001 int32_t get_pubkey(const String16& name, uint8_t** pubkey, size_t* pubkeyLength) { function in class:android::KeyStoreProxy [all...] |