Home | History | Annotate | Download | only in tpm2

Lines Matching refs:result

15   TPM_RC result = TPM_RC_SUCCESS;
19 result = TPMI_ALG_HASH_Unmarshal(&target->auditAlg, buffer, size, TRUE);
20 if (result != TPM_RC_SUCCESS) {
21 return result;
23 result = TPML_CC_Unmarshal(&target->setList, buffer, size);
24 if (result != TPM_RC_SUCCESS) {
25 return result;
27 result = TPML_CC_Unmarshal(&target->clearList, buffer, size);
28 if (result != TPM_RC_SUCCESS) {
29 return result;
31 if ((result == TPM_RC_SUCCESS) && *size) {
32 result = TPM_RC_SIZE;
34 return result;
43 TPM_RC result = TPM_RC_SUCCESS;
52 result = SetCommandCodeAuditStatus_In_Unmarshal(
55 if (result != TPM_RC_SUCCESS) {
56 return result;
59 result = TPM2_SetCommandCodeAuditStatus(&in);
60 if (result != TPM_RC_SUCCESS) {
61 return result;