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

/system/security/keystore/
H A DIKeystoreService.cpp483 virtual int32_t get(const String16& name, int32_t uid, uint8_t** item, size_t* itemLength) argument
502 *itemLength = ulen;
505 *itemLength = 0;
508 *itemLength = 0;
517 virtual int32_t insert(const String16& name, const uint8_t* item, size_t itemLength, int uid, argument
523 data.writeInt32(itemLength);
524 void* buf = data.writeInplace(itemLength);
525 memcpy(buf, item, itemLength);
H A Dkey_store_service.cpp67 size_t* itemLength) {
79 *itemLength = 0;
85 *itemLength = keyBlob.getLength();
90 int32_t KeyStoreService::insert(const String16& name, const uint8_t* item, size_t itemLength, argument
102 Blob keyBlob(item, itemLength, NULL, 0, ::TYPE_GENERIC);
66 get(const String16& name, int32_t uid, uint8_t** item, size_t* itemLength) argument

Completed in 516 milliseconds