Home | History | Annotate | Download | only in tpm2

Lines Matching refs:result

28   // Compute actual parameter_size. Don't add result to total_size.
41 TPM_RC result = TPM_RC_SUCCESS;
43 result = TPM2B_AUTH_Unmarshal(&target->auth, buffer, size);
44 if (result != TPM_RC_SUCCESS) {
45 return result;
47 result = TPMI_ALG_HASH_Unmarshal(&target->hashAlg, buffer, size, TRUE);
48 if (result != TPM_RC_SUCCESS) {
49 return result;
51 if ((result == TPM_RC_SUCCESS) && *size) {
52 result = TPM_RC_SIZE;
54 return result;
63 TPM_RC result = TPM_RC_SUCCESS;
75 result = HashSequenceStart_In_Unmarshal(&in, request_handles,
78 if (result != TPM_RC_SUCCESS) {
79 return result;
82 result = TPM2_HashSequenceStart(&in, &out);
83 if (result != TPM_RC_SUCCESS) {
84 return result;