Home | History | Annotate | Download | only in tpm2

Lines Matching defs:result

31   // Compute actual parameter_size. Don't add result to total_size.
44 TPM_RC result = TPM_RC_SUCCESS;
46 result = TPML_PCR_SELECTION_Unmarshal(&target->pcrSelectionIn, 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 = PCR_Read_In_Unmarshal(&in, request_handles, request_parameter_buffer,
76 if (result != TPM_RC_SUCCESS) {
77 return result;
80 result = TPM2_PCR_Read(&in, &out);
81 if (result != TPM_RC_SUCCESS) {
82 return result;