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

  /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/core/java/android/security/
IKeystoreService.aidl 52 int ungrant(String name, int granteeUid);
  /system/security/keystore/include/keystore/
IKeystoreService.h 131 UNGRANT = IBinder::FIRST_CALL_TRANSACTION + 17,
193 virtual int32_t ungrant(const String16& name, int32_t granteeUid) = 0;
  /system/security/keystore/
key_store_service.h 81 int32_t ungrant(const String16& name, int32_t granteeUid);
keystore_cli.cpp 265 // TODO: ungrant
IKeystoreService.cpp 879 virtual int32_t ungrant(const String16& name, int32_t granteeUid) function in class:android::BpKeystoreService
885 status_t status = remote()->transact(BnKeystoreService::UNGRANT, data, &reply);
887 ALOGD("ungrant() could not contact remote: %d\n", status);
893 ALOGD("ungrant() caught exception %d\n", err);
    [all...]
key_store_service.cpp 438 int32_t KeyStoreService::ungrant(const String16& name, int32_t granteeUid) { function in class:android::KeyStoreService
    [all...]
  /frameworks/base/keystore/java/android/security/
KeyStore.java 343 public boolean ungrant(String key, int uid) { method in class:KeyStore
345 return mBinder.ungrant(key, uid) == NO_ERROR;

Completed in 3731 milliseconds