Lines Matching defs:result
15 TPM_RC result = TPM_RC_SUCCESS;
19 result = UINT32_Unmarshal(&target->newMaxTries, buffer, size);
20 if (result != TPM_RC_SUCCESS) {
21 return result;
23 result = UINT32_Unmarshal(&target->newRecoveryTime, buffer, size);
24 if (result != TPM_RC_SUCCESS) {
25 return result;
27 result = UINT32_Unmarshal(&target->lockoutRecovery, buffer, size);
28 if (result != TPM_RC_SUCCESS) {
29 return result;
31 if ((result == TPM_RC_SUCCESS) && *size) {
32 result = TPM_RC_SIZE;
34 return result;
43 TPM_RC result = TPM_RC_SUCCESS;
52 result = DictionaryAttackParameters_In_Unmarshal(
55 if (result != TPM_RC_SUCCESS) {
56 return result;
59 result = TPM2_DictionaryAttackParameters(&in);
60 if (result != TPM_RC_SUCCESS) {
61 return result;