Lines Matching full:gp
58 gp.failedTries = 0; in DAPreInstall_Init()
59 gp.maxTries = 3; in DAPreInstall_Init()
60 gp.recoveryTime = 1000; // in seconds (~16.67 minutes) in DAPreInstall_Init()
61 gp.lockoutRecovery = 1000; // in seconds in DAPreInstall_Init()
62 gp.lockOutAuthEnabled = TRUE; // Use of lockoutAuth is enabled in DAPreInstall_Init()
115 if(gp.lockoutRecovery == 0) in DAStartup()
117 gp.lockOutAuthEnabled = TRUE; in DAStartup()
124 if(gp.recoveryTime != 0 in DAStartup()
125 && gp.failedTries < gp.maxTries in DAStartup()
129 gp.failedTries += g_daUsed; in DAStartup()
132 gp.failedTries++; in DAStartup()
175 if(gp.failedTries != 0) in DASelfHeal()
179 if(gp.recoveryTime == 0) in DASelfHeal()
181 gp.failedTries = 0; in DASelfHeal()
191 if(gp.failedTries > gp.maxTries) in DASelfHeal()
192 gp.failedTries = gp.maxTries; in DASelfHeal()
199 / gp.recoveryTime; in DASelfHeal()
201 if(gp.failedTries <= (UINT32)decreaseCount) in DASelfHeal()
203 gp.failedTries = 0; in DASelfHeal()
205 gp.failedTries -= (UINT32)decreaseCount; in DASelfHeal()
208 s_selfHealTimer += (decreaseCount * (UINT64)gp.recoveryTime) * 1000; in DASelfHeal()
219 if(!gp.lockOutAuthEnabled) in DASelfHeal()
224 if(gp.lockoutRecovery != 0) in DASelfHeal()
226 if(((g_time - (INT64)s_lockoutTimer) / 1000) >= gp.lockoutRecovery) in DASelfHeal()
228 gp.lockOutAuthEnabled = TRUE; in DASelfHeal()