Home
last modified time | relevance | path

Searched refs:STATE_CREATED (Results 1 – 12 of 12) sorted by relevance

/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
DActionTest.java52 mMonitor = new StubChatActionMonitor(ActionMonitor.STATE_CREATED, mActionKey, in setUp()
73 mMonitor.setState(ActionMonitor.STATE_CREATED); in testActionStartTransitionsCorrectly()
83 verifyState(1, ActionMonitor.STATE_CREATED, ActionMonitor.STATE_QUEUED); in testActionStartTransitionsCorrectly()
112 assertEquals("Start state: STATE_CREATED", ActionMonitor.STATE_CREATED, in testActionTransitionsEndToEndWithRequests()
122 verifyState(1, ActionMonitor.STATE_CREATED, ActionMonitor.STATE_QUEUED); in testActionTransitionsEndToEndWithRequests()
177 assertEquals("Start state: STATE_CREATED", ActionMonitor.STATE_CREATED, in testActionTransitionsEndToEndFailsRequests()
187 verifyState(1, ActionMonitor.STATE_CREATED, ActionMonitor.STATE_QUEUED); in testActionTransitionsEndToEndFailsRequests()
232 assertEquals("Start state: STATE_CREATED", ActionMonitor.STATE_CREATED, in testActionTransitionsEndToEndNoRequests()
242 verifyState(1, ActionMonitor.STATE_CREATED, ActionMonitor.STATE_QUEUED); in testActionTransitionsEndToEndNoRequests()
DActionServiceTest.java246 super(STATE_CREATED, Action.generateUniqueActionKey(baseKey), data); in TestChatActionMonitor()
249 assertEquals("Initial state should be STATE_CREATED", mState, STATE_CREATED); in TestChatActionMonitor()
DActionServiceSystemTest.java425 super(STATE_CREATED, Action.generateUniqueActionKey(baseKey), data); in TestChatActionMonitor()
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
DJob.java76 @IntDef({STATE_CREATED, STATE_STARTED, STATE_SET_UP, STATE_COMPLETED, STATE_CANCELED})
78 static final int STATE_CREATED = 0; field in Job
114 private volatile @State int mState = STATE_CREATED;
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/print/
DPrintJobPreferenceController.java51 case PrintJobInfo.STATE_CREATED: { in updateUi()
/packages/apps/Settings/src/com/android/settings/print/
DPrintJobPreferenceController.java51 case PrintJobInfo.STATE_CREATED: { in updateUi()
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
DUpdateDestinationBlockedAction.java43 super(STATE_CREATED, generateUniqueActionKey("UpdateDestinationBlockedAction"), data); in UpdateDestinationBlockedActionMonitor()
DAction.java165 ActionMonitor.setState(this, ActionMonitor.STATE_CREATED, in markStart()
DGetOrCreateConversationAction.java127 super(STATE_CREATED, generateUniqueActionKey("GetOrCreateConversationAction"), data); in GetOrCreateConversationActionMonitor()
DReadDraftDataAction.java121 super(STATE_CREATED, generateUniqueActionKey("ReadDraftDataAction"), data); in ReadDraftDataActionMonitor()
DActionMonitor.java109 protected static final int STATE_CREATED = 1; // Just created field in ActionMonitor
/packages/apps/Settings/tests/robotests/src/com/android/settings/print/
DPrintJobPreferenceControllerTest.java100 when(mPrintJobInfo.getState()).thenReturn(PrintJobInfo.STATE_CREATED); in updateUi_jobState_STATE_CREATED()