Lines Matching refs:pcrHandle
12435 list. If pcrHandle references a PCR and not TPM_RH_NULL, then the returned digest list is processed…
12436 the same manner as the digest list input parameter to TPM2_PCR_Extend() with the pcrHandle in each
12477 @ pcrHandle
12639 if(in->pcrHandle != TPM_RH_NULL)
12642 if(!PCRIsExtendAllowed(in->pcrHandle))
12654 if(gp.orderlyState != SHUTDOWN_NONE && PCRIsStateSaved(in->pcrHandle))
12711 if(in->pcrHandle != TPM_RH_NULL)
12712 PCRExtend(in->pcrHandle, hashAlg,
16609 pcrHandle is Extended into the bank identified by the tag (hashAlg).
16652 pcrHandle
16671 The pcrHandle parameter is allowed to reference TPM_RH_NULL. If so, the input parameters are
16717 @pcrHandle
16824 referenced by pcrHandle
16860 if(in->pcrHandle == TPM_RH_NULL)
16863 if(!PCRIsExtendAllowed(in->pcrHandle))
16867 if(PCRIsStateSaved(in->pcrHandle) && gp.orderlyState != SHUTDOWN_NONE)
16877 PCRExtend(in->pcrHandle, in->digests.digests[i].hashAlg,
16904 …ed PCR has been allocated. After the data is hashed, the digests list is returned. If the pcrHandle
16918 contain a digest for each bank, or it may only contain a digest for each bank in which pcrHandle is…
16922 implemented in the SHA1 bank. If pcrHandle references PCR[22], then digests may contain either a
16962 @pcrHandle
17076 referenced by pcrHandle
17103 if(in->pcrHandle != TPM_RH_NULL)
17106 if(!PCRIsExtendAllowed(in->pcrHandle))
17110 if(PCRIsStateSaved(in->pcrHandle) && gp.orderlyState != SHUTDOWN_NONE)
17128 if(in->pcrHandle != TPM_RH_NULL)
17129 PCRExtend(in->pcrHandle, hash, size,
17833 @pcrHandle
17923 PCR referenced by pcrHandle is not a member of a PCR
17944 if(!PCRBelongsAuthGroup(in->pcrHandle, &groupIndex))
17985 The definition of TPMI_DH_PCR in Part 2 indicates that if pcrHandle is out of the allowed range for
17988 If pcrHandle references a PCR that cannot be reset, the TPM shall return TPM_RC_LOCALITY.
18030 @pcrHandle
18116 by pcrHandle
18134 if(!PCRIsResetAllowed(in->pcrHandle))
18138 if(PCRIsStateSaved(in->pcrHandle) && gp.orderlyState != SHUTDOWN_NONE)
18147 PCRSetValue(in->pcrHandle, 0);
18150 PCRChanged(in->pcrHandle);
18570 pcrHandle;
18586 pcrHandle = PCR_FIRST + DRTM_PCR;
18592 pcrHandle = PCR_FIRST + HCRTM_PCR;
18607 PCRExtend(pcrHandle, hash, digest.t.size, digest.t.buffer);
18609 PcrWrite(pcrHandle, hash, &digest);