HomeSort by relevance Sort by last modified time
    Searched full:statemachine (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_manager_unittest.cc 135 class MockStateMachineObserver : public StateMachine::Observer {
137 MOCK_METHOD1(OnBurnStateChanged, void(StateMachine::State));
142 scoped_ptr<StateMachine> state_machine(new StateMachine());
143 EXPECT_EQ(StateMachine::INITIAL, state_machine->state());
147 EXPECT_CALL(observer, OnBurnStateChanged(StateMachine::DOWNLOADING))
151 EXPECT_CALL(observer, OnBurnStateChanged(StateMachine::BURNING))
155 EXPECT_CALL(observer, OnBurnStateChanged(StateMachine::INITIAL))
165 EXPECT_EQ(StateMachine::DOWNLOADING, state_machine->state());
173 // EXPECT_EQ(StateMachine::INITIAL, state_machine->state())
    [all...]
burn_controller.cc 24 public StateMachine::Observer,
84 // StateMachine::Observer interface.
85 virtual void OnBurnStateChanged(StateMachine::State state) OVERRIDE {
86 if (state != StateMachine::INITIAL && !working_) {
99 if (state_machine_->state() == StateMachine::BURNING) {
102 } else if (state_machine_->state() != StateMachine::INITIAL) {
164 StateMachine* state_machine_;
burn_manager.cc 175 // StateMachine
178 StateMachine::StateMachine()
184 StateMachine::~StateMachine() {
187 void StateMachine::OnError(int error_message_id) {
197 void StateMachine::OnSuccess() {
222 state_machine_(new StateMachine()),
296 if (state_machine_->state() == StateMachine::INITIAL) {
301 StateMachine::State state = state_machine_->state()
    [all...]
burn_manager.h 57 // TODO(hidehiko): This should be merged into the StateMachine's state.
133 class StateMachine {
149 StateMachine();
150 ~StateMachine();
192 DISALLOW_COPY_AND_ASSIGN(StateMachine);
346 StateMachine* state_machine() const { return state_machine_.get(); }
390 scoped_ptr<StateMachine> state_machine_;
  /external/chromium_org/cc/scheduler/
scheduler_state_machine_unittest.cc 49 class StateMachine : public SchedulerStateMachine {
51 explicit StateMachine(const SchedulerSettings& scheduler_settings)
111 StateMachine state(default_scheduler_settings);
132 StateMachine state(default_scheduler_settings);
149 StateMachine state(default_scheduler_settings);
167 StateMachine state(default_scheduler_settings);
184 StateMachine state(scheduler_settings);
268 StateMachine state(scheduler_settings);
329 StateMachine state(default_scheduler_settings);
365 StateMachine state(default_scheduler_settings)
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_agps.h 133 inline AgpsState(const AgpsStateMachine *stateMachine) :
134 mStateMachine(stateMachine),
274 const AgpsStateMachine* stateMachine) :
275 ID(id), mStateMachine(stateMachine) {}
304 inline BITSubscriber(const AgpsStateMachine* stateMachine,
306 Subscriber(ipv4, stateMachine)
337 const AgpsStateMachine* stateMachine,
340 Subscriber(id, stateMachine), mLocAdapter(adapter),
365 inline WIFISubscriber(const AgpsStateMachine* stateMachine,
367 Subscriber(sender_id, stateMachine),
    [all...]
loc_eng_agps.cpp 248 inline AgpsReleasedState(AgpsStateMachine* stateMachine) :
249 AgpsState(stateMachine)
315 inline AgpsPendingState(AgpsStateMachine* stateMachine) :
316 AgpsState(stateMachine)
410 inline AgpsAcquiredState(AgpsStateMachine* stateMachine) :
411 AgpsState(stateMachine)
504 inline AgpsReleasingState(AgpsStateMachine* stateMachine) :
505 AgpsState(stateMachine)
    [all...]
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_agps.h 133 inline AgpsState(const AgpsStateMachine *stateMachine) :
134 mStateMachine(stateMachine),
274 const AgpsStateMachine* stateMachine) :
275 ID(id), mStateMachine(stateMachine) {}
303 inline BITSubscriber(const AgpsStateMachine* stateMachine,
305 Subscriber(ipv4, stateMachine)
333 const AgpsStateMachine* stateMachine,
336 Subscriber(id, stateMachine), mLocAdapter(adapter),
357 inline WIFISubscriber(const AgpsStateMachine* stateMachine,
359 Subscriber(sender_id, stateMachine),
    [all...]
loc_eng_agps.cpp 248 inline AgpsReleasedState(AgpsStateMachine* stateMachine) :
249 AgpsState(stateMachine)
315 inline AgpsPendingState(AgpsStateMachine* stateMachine) :
316 AgpsState(stateMachine)
410 inline AgpsAcquiredState(AgpsStateMachine* stateMachine) :
411 AgpsState(stateMachine)
504 inline AgpsReleasingState(AgpsStateMachine* stateMachine) :
505 AgpsState(stateMachine)
    [all...]
  /external/bluetooth/bluedroid/btif/include/
btif_av.h 95 ** Description Send event to AV statemachine
101 /* used to pass events to AV statemachine from other tasks */
  /frameworks/base/core/java/android/net/
DhcpStateMachine.java 21 import com.android.internal.util.StateMachine;
37 * StateMachine that interacts with the native DHCP client and can talk to
38 * a controller that also needs to be a StateMachine
50 public class DhcpStateMachine extends StateMachine {
56 /* A StateMachine that controls the DhcpStateMachine */
57 private StateMachine mController;
112 private DhcpStateMachine(Context context, StateMachine controller, String intf) {
148 public static DhcpStateMachine makeDhcpStateMachine(Context context, StateMachine controller,
  /frameworks/base/core/java/com/android/internal/util/
Protocol.java 21 * to be unique by any {@link com.android.internal.util.Statemachine} implementation. This
22 * allows for interaction between different StateMachine implementations without a conflict
StateMachine.java 53 * which initializes and starts the state machine. The first action the StateMachine
138 class HelloWorld extends StateMachine {
236 class Hsm1 extends StateMachine {
420 public class StateMachine {
445 * StateMachine logging record.
449 private StateMachine mSm;
467 LogRec(StateMachine sm, Message msg, String info, IState state, IState orgState,
478 public void update(StateMachine sm, Message msg, String info, IState state, IState orgState,
658 synchronized void add(StateMachine sm, Message msg, String messageInfo, IState state,
676 /** true if StateMachine has quit *
    [all...]
IState.java 24 * The interface for implementing states in a {@link StateMachine}
State.java 24 * The class for implementing states in a StateMachine
  /device/asus/flo/camera/QCamera2/HAL/
QCameraStateMachine.h 173 QCAMERA_SM_CMD_TYPE_EXIT, // cmd for exiting statemachine cmdThread
183 int32_t stateMachine(qcamera_sm_evt_enum_t evt, void *payload);
193 // main statemachine process routine
197 qcamera_state_enum_t m_state; // statemachine state
  /device/lge/hammerhead/camera/QCamera2/HAL/
QCameraStateMachine.h 173 QCAMERA_SM_CMD_TYPE_EXIT, // cmd for exiting statemachine cmdThread
183 int32_t stateMachine(qcamera_sm_evt_enum_t evt, void *payload);
193 // main statemachine process routine
197 qcamera_state_enum_t m_state; // statemachine state
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraStateMachine.h 194 QCAMERA_SM_CMD_TYPE_EXIT, // cmd for exiting statemachine cmdThread
204 int32_t stateMachine(qcamera_sm_evt_enum_t evt, void *payload);
214 // main statemachine process routine
218 qcamera_state_enum_t m_state; // statemachine state
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
StateMachineTest.java 29 import com.android.internal.util.StateMachine;
30 import com.android.internal.util.StateMachine.LogRec;
39 * Test for StateMachine.
64 private void dumpLogRecs(StateMachine sm) {
82 * Tests {@link StateMachine#quit()}.
84 class StateMachineQuitTest extends StateMachine {
183 * Tests {@link StateMachine#quitNow()}
185 class StateMachineQuitNowTest extends StateMachine {
287 class StateMachineEnterExitTransitionToTest extends StateMachine {
475 class StateMachine0 extends StateMachine {
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSimPukView.java 55 private StateMachine mStateMachine = new StateMachine();
76 private class StateMachine {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiApConfigStore.java 31 import com.android.internal.util.StateMachine;
46 class WifiApConfigStore extends StateMachine {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
WakeLockStateMachine.java 28 import com.android.internal.util.StateMachine;
37 public abstract class WakeLockStateMachine extends StateMachine {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
RilMessageDecoder.java 28 import com.android.internal.util.StateMachine;
34 class RilMessageDecoder extends StateMachine {
  /hardware/qcom/wlan/qcwcn/wifi_hal/
gscancommand.h 121 /* Optional event - indicates progress of scanning statemachine */
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcSwitchStateMachine.java 22 import com.android.internal.util.StateMachine;
32 public class DcSwitchStateMachine extends StateMachine {

Completed in 660 milliseconds

1 2 3 4