Home | History | Annotate | Download | only in tpm2

Lines Matching refs:result

29   // Compute actual parameter_size. Don't add result to total_size.
42 TPM_RC result = TPM_RC_SUCCESS;
47 result = TPM2B_DATA_Unmarshal(&target->qualifyingData, buffer, size);
48 if (result != TPM_RC_SUCCESS) {
49 return result;
51 result = TPMT_SIG_SCHEME_Unmarshal(&target->inScheme, 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 = GetTime_In_Unmarshal(&in, request_handles, request_parameter_buffer,
81 if (result != TPM_RC_SUCCESS) {
82 return result;
85 result = TPM2_GetTime(&in, &out);
86 if (result != TPM_RC_SUCCESS) {
87 return result;