Home | History | Annotate | Download | only in tpm2

Lines Matching refs:result

30   // Compute actual parameter_size. Don't add result to total_size.
43 TPM_RC result = TPM_RC_SUCCESS;
47 result = TPM2B_PRIVATE_Unmarshal(&target->inPrivate, buffer, size);
48 if (result != TPM_RC_SUCCESS) {
49 return result;
51 result = TPM2B_PUBLIC_Unmarshal(&target->inPublic, buffer, size);
52 if (result != TPM_RC_SUCCESS) {
53 return result;
55 if ((result == TPM_RC_SUCCESS) && *size) {
56 result = TPM_RC_SIZE;
58 return result;
67 TPM_RC result = TPM_RC_SUCCESS;
79 result = Load_In_Unmarshal(&in, request_handles, request_parameter_buffer,
81 if (result != TPM_RC_SUCCESS) {
82 return result;
85 result = TPM2_Load(&in, &out);
86 if (result != TPM_RC_SUCCESS) {
87 return result;