HomeSort by relevance Sort by last modified time
    Searched full:current_state_ (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/net/quic/congestion_control/
inter_arrival_state_machine.cc 24 current_state_(kInterArrivalStateStable),
37 return current_state_;
58 switch (current_state_) {
63 current_state_ = kInterArrivalStateStable;
66 current_state_ = kInterArrivalStateStable;
69 current_state_ = kInterArrivalStateDelay;
72 current_state_ = kInterArrivalStateDelay;
95 switch (current_state_) {
99 current_state_ = kInterArrivalStatePacketLoss;
101 current_state_ = kInterArrivalStateDelay
    [all...]
inter_arrival_state_machine.h 75 InterArrivalState current_state_; member in class:net::InterArrivalStateMachine
  /external/chromium_org/chrome/browser/chromeos/login/
parallel_authenticator.cc 201 current_state_.reset(
217 current_state_.get(),
224 current_online_.reset(new OnlineAttempt(current_state_.get(),
234 current_state_.reset(
248 current_state_.get(),
258 current_online_.reset(new OnlineAttempt(current_state_.get(),
273 current_state_.reset(
281 current_state_.get(),
289 current_state_.reset(
296 Mount(current_state_.get()
    [all...]
parallel_authenticator.h 194 current_state_.reset(new_state);
218 scoped_ptr<AuthAttemptState> current_state_; member in class:chromeos::ParallelAuthenticator
  /external/chromium_org/ui/views/corewm/
cursor_manager.cc 77 current_state_(new internal::CursorState),
113 return current_state_->visible();
123 return current_state_->scale();
145 return current_state_->mouse_events_enabled();
186 return current_state_->cursor();
190 return current_state_->visible();
194 return current_state_->mouse_events_enabled();
198 current_state_->set_cursor(cursor);
204 current_state_->SetVisible(visible);
208 current_state_->set_scale(scale)
    [all...]
cursor_manager.h 78 scoped_ptr<internal::CursorState> current_state_; member in class:views::corewm::CursorManager
  /external/chromium/chrome/browser/sync/
sync_setup_flow.cc 168 ActivateState(current_state_);
174 << current_state_ << " to " << advance_state;
189 if (current_state_ == SyncSetupWizard::DONE ||
190 current_state_ == SyncSetupWizard::DONE_FIRST_TIME) {
195 switch (current_state_) {
262 if (current_state_ == SyncSetupWizard::ENTER_PASSPHRASE)
287 current_state_(start_state),
296 // Returns true if the flow should advance to |state| based on |current_state_|.
300 return current_state_ == SyncSetupWizard::FATAL_ERROR ||
301 current_state_ == SyncSetupWizard::GAIA_LOGIN |
    [all...]
sync_setup_wizard_unittest.cc 227 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_);
235 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_);
249 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_);
288 test_window_->flow()->current_state_);
296 EXPECT_EQ(SyncSetupWizard::DONE, test_window_->flow()->current_state_);
343 test_window_->flow()->current_state_);
411 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_);
413 EXPECT_EQ(SyncSetupWizard::GAIA_LOGIN, test_window_->flow()->current_state_);
417 test_window_->flow()->current_state_);
421 test_window_->flow()->current_state_);
    [all...]
sync_setup_flow.h 124 // based on |current_state_|, or false if that would be nonsense or is
133 SyncSetupWizard::State current_state_; member in class:SyncSetupFlow
  /external/chromium_org/chrome/browser/chromeos/login/managed/
managed_user_authenticator.cc 130 current_state_.reset(new ManagedUserAuthenticator::AuthAttempt(
136 current_state_.get(),
146 current_state_.reset(new ManagedUserAuthenticator::AuthAttempt(
152 current_state_.get(),
163 current_state_.reset(new ManagedUserAuthenticator::AuthAttempt(
169 current_state_.get(),
241 current_state_->hash(),
242 current_state_->add_key));
257 if (!current_state_->cryptohome_complete())
259 if (!current_state_->add_key && !current_state_->hash_obtained()
    [all...]
managed_user_authenticator.h 109 scoped_ptr<AuthAttempt> current_state_; member in class:chromeos::ManagedUserAuthenticator
  /external/chromium/chrome/browser/chromeos/login/
parallel_authenticator.cc 74 current_state_.reset(
81 mounter_ = CryptohomeOp::CreateMountAttempt(current_state_.get(),
84 current_online_ = new OnlineAttempt(current_state_.get(), this);
100 current_state_.reset(
108 key_checker_ = CryptohomeOp::CreateCheckKeyAttempt(current_state_.get(),
118 current_state_.reset(new AuthAttemptState("", "", "", "", "", false));
120 CryptohomeOp::CreateMountGuestAttempt(current_state_.get(), this);
140 consumer_->OnLoginSuccess(current_state_->username,
141 current_state_->password,
178 if (!localaccount_.empty() && localaccount_ == current_state_->username)
    [all...]
parallel_authenticator.h 195 current_state_.reset(new_state);
198 // Resets |current_state_| and then posts a task to the UI thread to
246 scoped_ptr<AuthAttemptState> current_state_; member in class:chromeos::ParallelAuthenticator
  /external/chromium_org/ash/wm/
sticky_keys.cc 76 current_state_(DISABLED),
93 switch (current_state_) {
136 current_state_ = ENABLED;
156 current_state_ = LOCKED;
164 current_state_ = DISABLED;
187 current_state_ = DISABLED;
sticky_keys.h 133 StickyKeyState current_state() const { return current_state_; }
165 StickyKeyState current_state_; member in class:ash::StickyKeysHandler
  /external/chromium_org/chrome/browser/history/
shortcuts_backend.cc 86 : current_state_(NOT_INITIALIZED),
100 if (current_state_ != NOT_INITIALIZED)
104 current_state_ = INITIALIZED;
108 current_state_ = INITIALIZING;
195 DCHECK(current_state_ == INITIALIZING);
215 current_state_ = INITIALIZED;
224 if (current_state_ != INITIALIZED)
shortcuts_backend.h 94 bool initialized() const { return current_state_ == INITIALIZED; }
155 CurrentState current_state_; member in class:history::ShortcutsBackend
  /external/chromium/net/proxy/
proxy_service.cc 387 current_state_(STATE_NONE) ,
515 if (current_state_ == STATE_NONE)
531 if (current_state_ == STATE_READY) {
554 DCHECK_NE(STATE_NONE, current_state_);
556 if (current_state_ != STATE_READY)
598 current_state_ = STATE_READY;
621 DCHECK_EQ(STATE_NONE, current_state_);
632 current_state_ = STATE_WAITING_FOR_PROXY_CONFIG;
645 DCHECK_EQ(STATE_WAITING_FOR_INIT_PROXY_RESOLVER, current_state_);
763 State previous_state = current_state_;
    [all...]
proxy_service.h 243 // of |current_state_|. If |reset_fetched_config| is true then
332 State current_state_; member in class:net::ProxyService
  /external/chromium_org/net/proxy/
proxy_service.cc 871 current_state_(STATE_NONE) ,
    [all...]
proxy_service.h 282 // of |current_state_|. If |reset_fetched_config| is true then
386 State current_state_; member in class:net::ProxyService

Completed in 1204 milliseconds