Searched defs:itemLength (Results 1 - 2 of 2) sorted by relevance

/system/security/keystore/
H A DIKeystoreService.cpp74 virtual int32_t get(const String16& name, uint8_t** item, size_t* itemLength) argument
92 *itemLength = ulen;
95 *itemLength = 0;
98 *itemLength = 0;
107 virtual int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int uid, argument
113 data.writeInt32(itemLength);
114 void* buf = data.writeInplace(itemLength);
115 memcpy(buf, item, itemLength);
H A Dkeystore.cpp1449 int32_t get(const String16& name, uint8_t** item, size_t* itemLength) { argument
1464 *itemLength = 0;
1470 *itemLength = keyBlob.getLength();
1475 int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int targetUid, argument
1498 Blob keyBlob(item, itemLength, NULL, 0, ::TYPE_GENERIC);

Completed in 493 milliseconds