Home | History | Annotate | Download | only in tpm2

Lines Matching defs:result

14   TPM_RC result = TPM_RC_SUCCESS;
18 result = UINT64_Unmarshal(&target->newTime, buffer, size);
19 if (result != TPM_RC_SUCCESS) {
20 return result;
22 if ((result == TPM_RC_SUCCESS) && *size) {
23 result = TPM_RC_SIZE;
25 return result;
34 TPM_RC result = TPM_RC_SUCCESS;
43 result = ClockSet_In_Unmarshal(&in, request_handles, request_parameter_buffer,
45 if (result != TPM_RC_SUCCESS) {
46 return result;
49 result = TPM2_ClockSet(&in);
50 if (result != TPM_RC_SUCCESS) {
51 return result;