• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:selection

385    TPMS_PCR_SELECTION        *selection           // IN: The selection structure  in IsPcrSelected()  argument
390 && ((selection->pcrSelect[pcr/8]) & (1 << (pcr % 8))) != 0) in IsPcrSelected()
402 TPMS_PCR_SELECTION *selection // IN: input PCR selection in FilterPcr() argument
408 for(i = selection->sizeofSelect; i < PCR_SELECT_MAX; i++) in FilterPcr()
409 selection->pcrSelect[i] = 0; in FilterPcr()
413 if(gp.pcrAllocated.pcrSelections[i].hash == selection->hash) in FilterPcr()
419 for (i = 0; i < selection->sizeofSelect; i++) in FilterPcr()
424 selection->pcrSelect[i] = 0; in FilterPcr()
427 selection->pcrSelect[i] &= allocated->pcrSelect[i]; in FilterPcr()
729 TPML_PCR_SELECTION *selection, // IN/OUT: PCR selection (filtered on in PCRComputeCurrentDigest() argument
744 for(i = 0; i < selection->count; i++) in PCRComputeCurrentDigest()
747 select = &selection->pcrSelections[i]; // Point to the current selection in PCRComputeCurrentDigest()
750 pcrSize = CryptGetHashDigestSize(selection->pcrSelections[i].hash); in PCRComputeCurrentDigest()
757 pcrData = GetPcrPointer(selection->pcrSelections[i].hash, pcr); in PCRComputeCurrentDigest()
776 TPML_PCR_SELECTION *selection, // IN/OUT: PCR selection (filtered on in PCRRead() argument
789 for(i = 0; i < selection->count; i++) in PCRRead()
792 select = &selection->pcrSelections[i]; // Point to the current selection in PCRRead()
816 CryptGetHashDigestSize(selection->pcrSelections[i].hash); in PCRRead()
818 pcrData = GetPcrPointer(selection->pcrSelections[i].hash, pcr); in PCRRead()
832 while(i < selection->count) in PCRRead()
834 MemorySet(selection->pcrSelections[i].pcrSelect, 0, in PCRRead()
835 selection->pcrSelections[i].sizeofSelect); in PCRRead()