Home | History | Annotate | Download | only in tpm2

Lines Matching defs:result

28   // Compute actual parameter_size. Don't add result to total_size.
41 TPM_RC result = TPM_RC_SUCCESS;
45 result = TPM2B_AUTH_Unmarshal(&target->auth, buffer, size);
46 if (result != TPM_RC_SUCCESS) {
47 return result;
49 result = TPMI_ALG_HASH_Unmarshal(&target->hashAlg, buffer, size, TRUE);
50 if (result != TPM_RC_SUCCESS) {
51 return result;
53 if ((result == TPM_RC_SUCCESS) && *size) {
54 result = TPM_RC_SIZE;
56 return result;
65 TPM_RC result = TPM_RC_SUCCESS;
77 result =
80 if (result != TPM_RC_SUCCESS) {
81 return result;
84 result = TPM2_HMAC_Start(&in, &out);
85 if (result != TPM_RC_SUCCESS) {
86 return result;