Home | History | Annotate | Download | only in tpm2

Lines Matching refs:nvIndex

16 //                                       not allowed to read from the Index referenced by nvIndex
17 // TPM_RC_NV_LOCKED the Index referenced by nvIndex is read locked
19 // Index referenced by nvIndex
20 // TPM_RC_NV_UNINITIALIZED the Index referenced by nvIndex has not been initialized (written)
28 NV_INDEX nvIndex;
34 NvGetIndexInfo(in->nvIndex, &nvIndex);
39 result = NvReadAccessChecks(in->authHandle, in->nvIndex);
44 if((in->size + in->offset) > nvIndex.publicArea.dataSize)
52 NvGetIndexData(in->nvIndex, &nvIndex, in->offset, in->size, out->data.t.buffer);