Vadim Bendebury | b86371b | 2015-05-27 18:16:19 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 The Chromium OS Authors. All rights reserved. |
| 3 | * Use of this source code is governed by a BSD-style license that can be |
| 4 | * found in the LICENSE file. |
| 5 | */ |
| 6 | |
| 7 | #ifndef __SOURCE_ENTITY_FP_H |
| 8 | #define __SOURCE_ENTITY_FP_H |
| 9 | |
| 10 | TPMI_RH_HIERARCHY EntityGetHierarchy( |
| 11 | TPMI_DH_ENTITY handle // IN :handle of entity |
| 12 | ); |
Vadim Bendebury | da72506 | 2015-05-31 14:41:18 -0700 | [diff] [blame] | 13 | TPM_RC EntityGetLoadStatus( |
| 14 | TPM_HANDLE *handle, // IN/OUT: handle of the entity |
| 15 | TPM_CC commandCode // IN: the commmandCode |
| 16 | ); |
Vadim Bendebury | 54a3d36 | 2015-06-01 15:26:03 -0700 | [diff] [blame] | 17 | UINT16 EntityGetName( |
| 18 | TPMI_DH_ENTITY handle, // IN: handle of entity |
| 19 | NAME *name // OUT: name of entity |
| 20 | ); |
| 21 | |
| 22 | #endif // __SOURCE_ENTITY_FP_H |