Lines Matching refs:HstiAip
47 HSTI_AIP_PRIVATE_DATA *HstiAip; in HstiAipGetInfo() local
56 HstiAip = HSTI_AIP_PRIVATE_DATA_FROM_THIS(This); in HstiAipGetInfo()
58 *InformationBlock = AllocateCopyPool (HstiAip->HstiSize, HstiAip->Hsti); in HstiAipGetInfo()
62 *InformationBlockSize = HstiAip->HstiSize; in HstiAipGetInfo()
96 HSTI_AIP_PRIVATE_DATA *HstiAip; in HstiAipSetInfo() local
110 HstiAip = HSTI_AIP_PRIVATE_DATA_FROM_THIS(This); in HstiAipSetInfo()
112 if (InformationBlockSize > HstiAip->HstiMaxSize) { in HstiAipSetInfo()
117 FreePool (HstiAip->Hsti); in HstiAipSetInfo()
118 HstiAip->Hsti = NewHsti; in HstiAipSetInfo()
119 HstiAip->HstiSize = 0; in HstiAipSetInfo()
120 HstiAip->HstiMaxSize = InformationBlockSize; in HstiAipSetInfo()
123 CopyMem (HstiAip->Hsti, InformationBlock, InformationBlockSize); in HstiAipSetInfo()
124 HstiAip->HstiSize = InformationBlockSize; in HstiAipSetInfo()