Home | History | Annotate | Download | only in tpm2

Lines Matching refs:result

14   TPM_RC result = TPM_RC_SUCCESS;
18 result = TPM2B_OPERAND_Unmarshal(&target->operandB, buffer, size);
19 if (result != TPM_RC_SUCCESS) {
20 return result;
22 result = UINT16_Unmarshal(&target->offset, buffer, size);
23 if (result != TPM_RC_SUCCESS) {
24 return result;
26 result = TPM_EO_Unmarshal(&target->operation, buffer, size);
27 if (result != TPM_RC_SUCCESS) {
28 return result;
30 if ((result == TPM_RC_SUCCESS) && *size) {
31 result = TPM_RC_SIZE;
33 return result;
42 TPM_RC result = TPM_RC_SUCCESS;
51 result = PolicyCounterTimer_In_Unmarshal(&in, request_handles,
54 if (result != TPM_RC_SUCCESS) {
55 return result;
58 result = TPM2_PolicyCounterTimer(&in);
59 if (result != TPM_RC_SUCCESS) {
60 return result;