Home
last modified time | relevance | path

Searched refs:label (Results 1 – 8 of 8) sorted by relevance

/trusty/user/base/app/acvp/
Dkeymaster_ckdf.cpp74 keymaster::KeymasterBlob label( in KeymasterCKDF()
88 auto ckdf_ret = ckdf(key, label, &context, 1, &output); in KeymasterCKDF()
97 size_t fixed_data_size = label.data_length + 1 + context.data_length + 4; in KeymasterCKDF()
101 memcpy(fixed_data.get(), label.data, label.data_length); in KeymasterCKDF()
102 fixed_data[label.data_length] = 0x00; in KeymasterCKDF()
103 memcpy(&fixed_data[label.data_length + 1], context.data, in KeymasterCKDF()
105 memcpy(&fixed_data[label.data_length + 1 + context.data_length], in KeymasterCKDF()
/trusty/user/base/lib/apploader_package/
Dpackage.cpp263 uint64_t label; in apploader_parse_package_metadata() local
266 if (CborReadUint(&in, &label) != CBOR_READ_RESULT_OK) { in apploader_parse_package_metadata()
272 switch (label) { in apploader_parse_package_metadata()
286 label); in apploader_parse_package_metadata()
Dcose.cpp1106 int64_t label; in coseDecryptAesGcmInPlace() local
1110 if (CborReadInt(&protHdrIn, &label) != CBOR_READ_RESULT_OK) { in coseDecryptAesGcmInPlace()
1118 if (label == COSE_LABEL_ALG) { in coseDecryptAesGcmInPlace()
1152 if (CborReadInt(&in, &label) != CBOR_READ_RESULT_OK) { in coseDecryptAesGcmInPlace()
1160 if (label == COSE_LABEL_IV) { in coseDecryptAesGcmInPlace()
1300 uint64_t label; in coseDecryptAesGcmKeyWrapInPlace() local
1305 if (CborReadUint(&in, &label) != CBOR_READ_RESULT_OK) { in coseDecryptAesGcmKeyWrapInPlace()
1313 if (label == COSE_LABEL_KID) { in coseDecryptAesGcmKeyWrapInPlace()
1430 label); in coseDecryptAesGcmKeyWrapInPlace()
/trusty/user/base/lib/teeui-stub/
Drules.mk29 $(LIBTEEUI_ROOT)/src/label.cpp \
/trusty/user/app/confirmationui/examples/layouts/include/layouts/
Dlayout.h243 void translate(LabelImpl* label) { in translate() argument
244 uint64_t textId = label->textId(); in translate()
247 label->setText({&translation[0], &translation[strlen(translation)]}); in translate()
/trusty/host/common/scripts/metrics_atoms_protoc_plugin/
Dmetrics_atoms_protoc_plugin.py117 def get_tag(cls, label: FieldDescriptorProto,
120 if label == FieldDescriptorProto.LABEL_REPEATED:
299 tag=VendorAtomValueTag.get_tag(ff.label, ff.type,
/trusty/user/app/sample/hwcryptohal/server/
Dservice_encryption_key.rs152 let label: i64 = element in try_from() localVariable
172 match label { in try_from()
180 _ => return Err(hwcrypto_err!(BAD_PARAMETER, "unknown label {}", label)), in try_from()
/trusty/user/base/app/apploader/package_tool/
Dapploader_package_tool.cpp336 uint64_t label; in find_content_is_cose_encrypt() local
341 if (CborReadUint(&in, &label) != CBOR_READ_RESULT_OK) { in find_content_is_cose_encrypt()
346 if (label == APPLOADER_PACKAGE_HEADER_LABEL_CONTENT_IS_COSE_ENCRYPT) { in find_content_is_cose_encrypt()
531 uint64_t label; in parse_package() local
535 if (CborReadUint(&in, &label) != CBOR_READ_RESULT_OK) { in parse_package()
541 switch (label) { in parse_package()
555 label); in parse_package()