Searched refs:itemLength (Results 1 – 3 of 3) sorted by relevance
/system/security/keystore/include/keystore/ |
D | IKeystoreService.h | 77 virtual int32_t get(const String16& name, uint8_t** item, size_t* itemLength) = 0; 79 virtual int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int uid,
|
/system/security/keystore/ |
D | IKeystoreService.cpp | 74 virtual int32_t get(const String16& name, uint8_t** item, size_t* itemLength) in get() argument 92 *itemLength = ulen; in get() 95 *itemLength = 0; in get() 98 *itemLength = 0; in get() 107 virtual int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int uid, in insert() argument 113 data.writeInt32(itemLength); in insert() 114 void* buf = data.writeInplace(itemLength); in insert() 115 memcpy(buf, item, itemLength); in insert()
|
D | keystore.cpp | 1613 int32_t get(const String16& name, uint8_t** item, size_t* itemLength) { in get() argument 1629 *itemLength = 0; in get() 1635 *itemLength = keyBlob.getLength(); in get() 1640 int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int targetUid, in insert() argument 1664 Blob keyBlob(item, itemLength, NULL, 0, ::TYPE_GENERIC); in insert()
|