Home | History | Annotate | Download | only in tpm2

Lines Matching refs:result

14   TPM_RC result = TPM_RC_SUCCESS;
20 result = TPM2B_OPERAND_Unmarshal(&target->operandB, buffer, size);
21 if (result != TPM_RC_SUCCESS) {
22 return result;
24 result = UINT16_Unmarshal(&target->offset, buffer, size);
25 if (result != TPM_RC_SUCCESS) {
26 return result;
28 result = TPM_EO_Unmarshal(&target->operation, buffer, size);
29 if (result != TPM_RC_SUCCESS) {
30 return result;
32 if ((result == TPM_RC_SUCCESS) && *size) {
33 result = TPM_RC_SIZE;
35 return result;
44 TPM_RC result = TPM_RC_SUCCESS;
53 result = PolicyNV_In_Unmarshal(&in, request_handles, request_parameter_buffer,
55 if (result != TPM_RC_SUCCESS) {
56 return result;
59 result = TPM2_PolicyNV(&in);
60 if (result != TPM_RC_SUCCESS) {
61 return result;