Searched refs:mLockOut (Results 1 – 2 of 2) sorted by relevance
209 switch (mLockOut.state) { in authenticate()216 if (mLockOut.nextAttempt > now) { in authenticate()217 mLockOut.state = LockOut::State::TIMED_LOCKED; in authenticate()220 std::chrono::milliseconds>(mLockOut.nextAttempt - now).count(); in authenticate()230 mLockOut.state = LockOut::State::NO; in authenticate()237 (mLockOut.state == LockOut::State::NO) in authenticate()238 ? 1 : ++mLockOut.failedAttempts; in authenticate()241 mLockOut.state = LockOut::State::PERMANENT; in authenticate()245 mLockOut.state = LockOut::State::TIMED; in authenticate()247 mLockOut.nextAttempt = now + std::chrono::seconds(10); in authenticate()[all …]
71 LockOut mLockOut; member