Lines Matching refs:property
169 bool TpmStateImpl::GetTpmProperty(TPM_PT property, uint32_t* value) {
171 if (tpm_properties_.count(property) == 0) {
175 *value = tpm_properties_[property];
194 uint32_t property,
200 capability, property, max_properties_per_call, &more_data,
216 if (next_property <= property) {
220 property = next_property;
233 const TPMS_TAGGED_PROPERTY& property =
235 VLOG(1) << "TPM Property 0x" << std::hex << property.property
236 << " = 0x" << property.value;
237 impl->tpm_properties_[property.property] = property.value;
238 next_property = property.property + 1;
259 const TPMS_ALG_PROPERTY& property =
261 VLOG(1) << "Algorithm Properties 0x" << std::hex << property.alg
262 << " = 0x" << property.alg_properties;
263 impl->algorithm_properties_[property.alg] = property.alg_properties;
264 next_property = property.alg + 1;