HomeSort by relevance Sort by last modified time
    Searched refs:ungrant (Results 1 - 6 of 6) sorted by null

  /frameworks/base/keystore/tests/src/android/security/
KeyStoreTest.java 513 assertTrue("Should be able to ungrant key to other user",
514 mKeyStore.ungrant(TEST_KEYNAME, 0));
527 assertTrue("Should be able to ungrant key to other user",
528 mKeyStore.ungrant(TEST_KEYNAME, 0));
532 assertFalse("Should fail to ungrant key when keystore not initialized",
533 mKeyStore.ungrant(TEST_KEYNAME, 0));
545 mKeyStore.ungrant(TEST_KEYNAME, 0));
559 assertTrue("Should be able to ungrant key to other user",
560 mKeyStore.ungrant(TEST_KEYNAME, 0));
562 assertFalse("Should fail to ungrant key to other user second time"
    [all...]
  /system/security/keystore/include/keystore/
IKeystoreService.h 63 UNGRANT = IBinder::FIRST_CALL_TRANSACTION + 18,
116 virtual int32_t ungrant(const String16& name, int32_t granteeUid) = 0;
  /frameworks/base/keystore/java/android/security/
KeyStore.java 275 public boolean ungrant(String key, int uid) { method in class:KeyStore
277 return mBinder.ungrant(key, uid) == NO_ERROR;
  /frameworks/base/core/java/android/security/
IKeystoreService.java 388 public int ungrant(String name, int granteeUid) throws RemoteException { method in class:IKeystoreService.Stub.Proxy
646 public int ungrant(String name, int granteeUid) throws RemoteException; method in interface:IKeystoreService
  /system/security/keystore/
IKeystoreService.cpp 483 virtual int32_t ungrant(const String16& name, int32_t granteeUid) function in class:android::BpKeystoreService
489 status_t status = remote()->transact(BnKeystoreService::UNGRANT, data, &reply);
491 ALOGD("ungrant() could not contact remote: %d\n", status);
497 ALOGD("ungrant() caught exception %d\n", err);
893 case UNGRANT: {
897 int32_t ret = ungrant(name, granteeUid);
    [all...]
keystore.cpp 2200 int32_t ungrant(const String16& name, int32_t granteeUid) { function in class:android::KeyStoreProxy
    [all...]

Completed in 243 milliseconds