Lines Matching refs:attributeIndex
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);
429 retData->len = attribute->values[attributeIndex]->len;
441 uint32_t attributeIndex;
442 ResultCode getAttrIndexResult = GetAttributeIndex(key, &attributeIndex);
445 DestroyUint8Array(&attribute->values[attributeIndex]);
446 attribute->values[attributeIndex] = CreateUint8ArrayByData(data.data, data.len);
447 if (attribute->values[attributeIndex] == NULL) {