/system/security/keystore/include/keystore/ |
IKeystoreService.h | 61 DEL_KEY = IBinder::FIRST_CALL_TRANSACTION + 16, 109 virtual int32_t del_key(const String16& name, int uid) = 0;
|
/system/security/keystore/ |
keystore_cli.cpp | 215 SINGLE_ARG_PLUS_UID_INT_RETURN(del_key);
|
IKeystoreService.cpp | 443 virtual int32_t del_key(const String16& name, int uid) function in class:android::BpKeystoreService 449 status_t status = remote()->transact(BnKeystoreService::DEL_KEY, data, &reply); 451 ALOGD("del_key() could not contact remote: %d\n", status); 457 ALOGD("del_key() caught exception %d\n", err); 816 case DEL_KEY: { 820 int32_t ret = del_key(name, uid);
|
keystore.cpp | 2044 int32_t del_key(const String16& name, int targetUid) { function in class:android::KeyStoreProxy [all...] |
/frameworks/base/keystore/java/android/security/ |
KeyStore.java | 237 return mBinder.del_key(key, uid) == NO_ERROR;
|
/frameworks/base/core/java/android/security/ |
IKeystoreService.java | 352 public int del_key(String name, int uid) throws RemoteException { method in class:IKeystoreService.Stub.Proxy 586 public int del_key(String name, int uid) throws RemoteException; method in interface:IKeystoreService
|