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;
46 result = TPM2B_AUTH_Unmarshal(&target->newAuth, buffer, size);
47 if (result != TPM_RC_SUCCESS) {
48 return result;
50 if ((result == TPM_RC_SUCCESS) && *size) {
51 result = TPM_RC_SIZE;
53 return result;
62 TPM_RC result = TPM_RC_SUCCESS;
74 result = ObjectChangeAuth_In_Unmarshal(&in, request_handles,
77 if (result != TPM_RC_SUCCESS) {
78 return result;
81 result = TPM2_ObjectChangeAuth(&in, &out);
82 if (result != TPM_RC_SUCCESS) {
83 return result;