Home | History | Annotate | Download | only in tpm2

Lines Matching defs:result

36 //                                      result of inSymSeed decryption
74 TPM_RC result = TPM_RC_SUCCESS;
122 result = CryptSecretDecrypt(in->parentHandle, NULL, "DUPLICATE",
124 pAssert(result != TPM_RC_BINDING);
126 if(result != TPM_RC_SUCCESS)
127 return RcSafeAddToResult(result, RC_Import_inSymSeed);
143 result = DuplicateToSensitive(&in->duplicate, &name, in->parentHandle,
147 if(result != TPM_RC_SUCCESS)
148 return RcSafeAddToResult(result, RC_Import_duplicate);
160 result = PublicAttributesValidation(TRUE, in->parentHandle,
162 if(result != TPM_RC_SUCCESS)
163 return RcSafeAddToResult(result, RC_Import_objectPublic);
167 result = ObjectLoad(TPM_RH_NULL, &in->objectPublic.t.publicArea,
170 if(result != TPM_RC_SUCCESS)
171 return result;