Home | History | Annotate | Download | only in tpm2

Lines Matching defs:result

30   // Compute actual parameter_size. Don't add result to total_size.
43 TPM_RC result = TPM_RC_SUCCESS;
45 result = TPM_CAP_Unmarshal(&target->capability, buffer, size);
46 if (result != TPM_RC_SUCCESS) {
47 return result;
49 result = UINT32_Unmarshal(&target->property, buffer, size);
50 if (result != TPM_RC_SUCCESS) {
51 return result;
53 result = UINT32_Unmarshal(&target->propertyCount, buffer, size);
54 if (result != TPM_RC_SUCCESS) {
55 return result;
57 if ((result == TPM_RC_SUCCESS) && *size) {
58 result = TPM_RC_SIZE;
60 return result;
69 TPM_RC result = TPM_RC_SUCCESS;
81 result =
84 if (result != TPM_RC_SUCCESS) {
85 return result;
88 result = TPM2_GetCapability(&in, &out);
89 if (result != TPM_RC_SUCCESS) {
90 return result;