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

  /frameworks/base/core/java/android/security/
IKeystoreService.aidl 52 int ungrant(String name, int granteeUid);
  /frameworks/base/keystore/tests/src/android/security/
KeyStoreTest.java 523 assertTrue("Should be able to ungrant key to other user",
524 mKeyStore.ungrant(TEST_KEYNAME, 0));
537 assertTrue("Should be able to ungrant key to other user",
538 mKeyStore.ungrant(TEST_KEYNAME, 0));
542 assertFalse("Should fail to ungrant key when keystore not initialized",
543 mKeyStore.ungrant(TEST_KEYNAME, 0));
555 mKeyStore.ungrant(TEST_KEYNAME, 0));
569 assertTrue("Should be able to ungrant key to other user",
570 mKeyStore.ungrant(TEST_KEYNAME, 0));
572 assertFalse("Should fail to ungrant key to other user second time"
    [all...]
  /frameworks/base/keystore/java/android/security/
KeyStore.java 353 public boolean ungrant(String key, int uid) { method in class:KeyStore
355 return mBinder.ungrant(key, uid) == NO_ERROR;
  /system/security/keystore/include/keystore/
IKeystoreService.h 96 UNGRANT = IBinder::FIRST_CALL_TRANSACTION + 17,
172 virtual ::keystore::KeyStoreServiceReturnCode ungrant(const String16& name,
  /system/security/keystore/
key_store_service.h 88 KeyStoreServiceReturnCode ungrant(const android::String16& name, int32_t granteeUid) override;
IKeystoreService.cpp 463 KeyStoreServiceReturnCode ungrant(const String16& name, int32_t granteeUid) override {
468 status_t status = remote()->transact(BnKeystoreService::UNGRANT, data, &reply);
470 ALOGD("ungrant() could not contact remote: %d\n", status);
475 ALOGD("ungrant() caught exception %d\n", err);
    [all...]
key_store_service.cpp 533 KeyStoreServiceReturnCode KeyStoreService::ungrant(const String16& name, int32_t granteeUid) { function in class:KeyStoreService
    [all...]

Completed in 282 milliseconds