Home
last modified time | relevance | path

Searched refs:valueLength (Results 1 – 3 of 3) sorted by relevance

/system/security/keystore/
Dblob.cpp31 Blob::Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength, in Blob() argument
34 if (valueLength > VALUE_SIZE) { in Blob()
35 valueLength = VALUE_SIZE; in Blob()
38 if (infoLength + valueLength > VALUE_SIZE) { in Blob()
39 infoLength = VALUE_SIZE - valueLength; in Blob()
42 mBlob.length = valueLength; in Blob()
43 memcpy(mBlob.value, value, valueLength); in Blob()
46 memcpy(mBlob.value + valueLength, info, infoLength); in Blob()
Dkeystore_get.cpp33 size_t valueLength; in keystore_get() local
34 int32_t ret = service->get(String16(key, keyLength), -1, value, &valueLength); in keystore_get()
40 return valueLength; in keystore_get()
Dblob.h79 Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength,