• Home
  • Raw
  • Download

Lines Matching refs:ResponseCode

54 ResponseCode KeyStore::initialize() {  in initialize()
63 ResponseCode KeyStore::initializeUser(const android::String8& pw, uid_t userId) { in initializeUser()
68 ResponseCode KeyStore::copyMasterKey(uid_t srcUser, uid_t dstUser) { in copyMasterKey()
74 ResponseCode KeyStore::writeMasterKey(const android::String8& pw, uid_t userId) { in writeMasterKey()
79 ResponseCode KeyStore::readMasterKey(const android::String8& pw, uid_t userId) { in readMasterKey()
151 ResponseCode rc = get(filename, &blob, ::TYPE_ANY, userId); in resetUser()
212 ResponseCode KeyStore::get(const char* filename, Blob* keyBlob, const BlobType type, uid_t userId) { in get()
214 ResponseCode rc = in get()
242 ResponseCode imported = in get()
267 ResponseCode KeyStore::put(const char* filename, Blob* keyBlob, uid_t userId) { in put()
273 ResponseCode KeyStore::del(const char* filename, const BlobType type, uid_t userId) { in del()
275 ResponseCode rc = get(filename, &keyBlob, type, userId); in del()
347 ResponseCode KeyStore::list(const android::String8& prefix, in list()
412 ResponseCode KeyStore::importKey(const uint8_t* key, size_t keyLen, const char* filename, in importKey()
486 ResponseCode KeyStore::getKeyForName(Blob* keyBlob, const android::String8& keyName, in getKeyForName()
491 ResponseCode responseCode = get(filepath8.string(), keyBlob, type, userId); in getKeyForName()
620 ResponseCode KeyStore::importBlobAsKey(Blob* blob, const char* filename, uid_t uid) { in importBlobAsKey()
648 ResponseCode rc = importKey(pkcs8key.get(), len, filename, get_user_id(uid), in importBlobAsKey()