Home | History | Annotate | Download | only in tpm2

Lines Matching refs:result

29   // Compute actual parameter_size. Don't add result to total_size.
42 TPM_RC result = TPM_RC_SUCCESS;
48 result = TPM2B_DATA_Unmarshal(&target->qualifyingData, buffer, size);
49 if (result != TPM_RC_SUCCESS) {
50 return result;
52 result = TPMT_SIG_SCHEME_Unmarshal(&target->inScheme, buffer, size);
53 if (result != TPM_RC_SUCCESS) {
54 return result;
56 if ((result == TPM_RC_SUCCESS) && *size) {
57 result = TPM_RC_SIZE;
59 return result;
68 TPM_RC result = TPM_RC_SUCCESS;
80 result = GetSessionAuditDigest_In_Unmarshal(&in, request_handles,
83 if (result != TPM_RC_SUCCESS) {
84 return result;
87 result = TPM2_GetSessionAuditDigest(&in, &out);
88 if (result != TPM_RC_SUCCESS) {
89 return result;