Lines Matching refs:attributeIndex
218 uint32_t attributeIndex;
219 if (GetAttributeIndex(type, &attributeIndex) != RESULT_SUCCESS) {
393 uint32_t attributeIndex;
394 ResultCode getAttrIndexResult = GetAttributeIndex(key, &attributeIndex);
397 if (attributePri->values[attributeIndex] == NULL) {
401 *len = attributePri->values[attributeIndex]->len;
413 uint32_t attributeIndex;
414 ResultCode getAttrIndexResult = GetAttributeIndex(key, &attributeIndex);
417 if (attribute->values[attributeIndex] == NULL) {
422 if (attribute->values[attributeIndex]->data != NULL && attribute->values[attributeIndex]->len != 0) {
423 errno_t memcpyRet = memcpy_s(retData->data, retData->len, attribute->values[attributeIndex]->data,
424 attribute->values[attributeIndex]->len);
426 retData->len = attribute->values[attributeIndex]->len;
442 uint32_t attributeIndex;
443 ResultCode getAttrIndexResult = GetAttributeIndex(key, &attributeIndex);
446 DestroyUint8Array(&attribute->values[attributeIndex]);
447 attribute->values[attributeIndex] = CreateUint8ArrayByData(data.data, data.len);
448 if (attribute->values[attributeIndex] == NULL) {