Home
last modified time | relevance | path

Searched refs:RESET (Results 1 – 25 of 42) sorted by relevance

12

/packages/apps/DeskClock/tests/src/com/android/deskclock/timer/
DTimerFragmentTest.java185 assertStateEquals(Timer.State.RESET, 0); in timeClick_startsTimer()
197 assertStateEquals(Timer.State.RESET, 1); in timeClick_startsSecondTimer()
198 assertStateEquals(Timer.State.RESET, 0); in timeClick_startsSecondTimer()
201 assertStateEquals(Timer.State.RESET, 0); in timeClick_startsSecondTimer()
211 assertStateEquals(Timer.State.RESET, 0); in timeClick_pausesTimer()
225 assertStateEquals(Timer.State.RESET, 1); in timeClick_pausesSecondTimer()
226 assertStateEquals(Timer.State.RESET, 0); in timeClick_pausesSecondTimer()
229 assertStateEquals(Timer.State.RESET, 0); in timeClick_pausesSecondTimer()
232 assertStateEquals(Timer.State.RESET, 0); in timeClick_pausesSecondTimer()
242 assertStateEquals(Timer.State.RESET, 0); in timeClick_restartsTimer()
[all …]
/packages/apps/DeskClock/src/com/android/deskclock/data/
DTimer.kt57 RUNNING(1), PAUSED(2), EXPIRED(3), RESET(4), MISSED(5); in <lambda>()
75 get() = state == State.RESET in <lambda>()
95 if (state == State.PAUSED || state == State.RESET) { in <lambda>()
152 if (state == State.PAUSED || state == State.RESET) { in <lambda>()
167 if (state == State.EXPIRED || state == State.RESET || state == State.MISSED) { in <lambda>()
180 if (state == State.RESET || state == State.MISSED) { in <lambda>()
193 return if (state == State.RESET) { in <lambda>()
196 Timer(id, State.RESET, length, length, UNUSED, UNUSED, length, label, in <lambda>()
205 if (state == State.RESET || state == State.PAUSED) { in <lambda>()
222 if (state == State.RESET || state == State.PAUSED) { in <lambda>()
[all …]
DStopwatch.kt38 RESET, RUNNING, PAUSED
42 get() = state == State.RESET
137 private val RESET_STOPWATCH = Stopwatch(State.RESET, UNUSED, UNUSED, 0)
/packages/services/Car/cpp/computepipe/tests/fuzz/
DPixelStreamManagerFuzzer.cpp45 RESET = 0, enumerator
84 uint8_t state = fdp.ConsumeIntegralInRange<uint8_t>(RESET, CLONE_PACKET); in LLVMFuzzerTestOneInput()
88 case RESET: in LLVMFuzzerTestOneInput()
/packages/services/Car/cpp/computepipe/runner/stream_manager/
DSemanticManager.cpp72 mState = RESET; in setEngineInterface()
94 if (mState == RESET) { in handleExecutionPhase()
111 if (mState == CONFIG_DONE || mState == RESET) { in handleStopWithFlushPhase()
DPixelStreamManager.cpp256 if (mState == RESET) { in handleExecutionPhase()
277 if (mState == CONFIG_DONE || mState == RESET) { in handleStopImmediatePhase()
/packages/services/Car/cpp/computepipe/runner/stream_manager/include/
DStreamManager.h46 RESET = 0, enumerator
79 State mState = RESET;
/packages/services/Car/cpp/computepipe/aidl/aidl_api/android.automotive.computepipe.runner/current/android/automotive/computepipe/runner/
DPipeState.aidl21 RESET = 0, enumConstant
/packages/services/Car/cpp/computepipe/aidl/aidl_api/android.automotive.computepipe.runner/1/android/automotive/computepipe/runner/
DPipeState.aidl21 RESET = 0, enumConstant
/packages/services/Car/cpp/computepipe/aidl/android/automotive/computepipe/runner/
DPipeState.aidl27 RESET = 0, enumConstant
/packages/services/Car/cpp/computepipe/types/
DGraphState.h23 RESET = 0, enumerator
/packages/modules/Bluetooth/system/gd/hci/fuzz/
Dstatus_vs_complete_commands.cc27 OpCode::RESET,
/packages/services/Car/cpp/computepipe/runner/include/
DEventGenerator.h32 RESET = 0, enumerator
/packages/services/Car/cpp/computepipe/runner/
DEventGenerator.cpp37 case RESET: in dispatchToComponent()
/packages/services/Car/cpp/computepipe/runner/client_interface/
DDebuggerImpl.cpp170 if (mGraphState == GraphState::RUNNING || mGraphState == GraphState::RESET) { in releaseDebugger()
224 mGraphState = GraphState::RESET; in handleResetPhase()
DDebuggerImpl.h66 GraphState mGraphState = GraphState::RESET;
DAidlClientImpl.cpp47 case RESET: in ToAidlState()
48 return PipeState::RESET; in ToAidlState()
/packages/modules/Bluetooth/system/device/src/
Ddevice_iot_config_int.h62 enum ConfigSource { NOT_LOADED, ORIGINAL, BACKUP, NEW_FILE, RESET }; enumerator
Ddevice_iot_config.cc359 device_iot_config_source = RESET; in device_iot_config_clear()
382 case RESET: in device_debug_iot_config_dump()
/packages/modules/Bluetooth/system/gd/hci/
Dcontroller_test.cc243 case (OpCode::RESET): in HandleCommand()
431 auto packet = test_hci_layer_->GetCommand(OpCode::RESET); in TEST_F()
437 auto packet = test_hci_layer_->GetCommand(OpCode::RESET); in TEST_F()
486 auto packet = test_hci_layer_->GetCommand(OpCode::RESET); in TEST_F()
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/debug/
DDeviceLockCommandReceiver.java105 Commands.RESET,
120 String RESET = "reset"; field
166 case Commands.RESET: in onReceive()
/packages/apps/Settings/protos/
Dfuelgauge_log.proto19 RESET = 3; enumerator
/packages/modules/Bluetooth/system/audio/asrc/
Dasrc_resampler.cc42 enum class StateId { RESET, WARMUP, RUNNING }; enumerator
76 if (state.id == StateId::RESET) { in OnEvent()
172 : state_{.id = StateId::RESET}, reference_timing_{0, 0, 0} { in ClockRecovery()
/packages/apps/Settings/src/com/android/settings/fuelgauge/
DBatteryOptimizeUtils.java266 Action.RESET); in resetAppOptimizationModeInternal()
365 if (action != Action.RESET) { // reset has been notified in resetAppOptimizationMode in setAppOptimizationModeInternal()
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/
DBatteryOptimizeLogUtilsTest.java77 BatteryOptimizeLogUtils.writeLog(mContext, Action.RESET, "pkg" + i, "logs"); in writeLog_overMaxEntriesLogs_withCorrectCounts()

12