Searched refs:StopwatchService (Results 1 – 5 of 5) sorted by relevance
40 import com.android.deskclock.stopwatch.StopwatchService60 val showApp: Intent = Intent(context, StopwatchService::class.java) in build()61 .setAction(StopwatchService.ACTION_SHOW_STOPWATCH) in build()80 val pause: Intent = Intent(context, StopwatchService::class.java) in build()81 .setAction(StopwatchService.ACTION_PAUSE_STOPWATCH) in build()91 val lap: Intent = Intent(context, StopwatchService::class.java) in build()92 .setAction(StopwatchService.ACTION_LAP_STOPWATCH) in build()113 val start: Intent = Intent(context, StopwatchService::class.java) in build()114 .setAction(StopwatchService.ACTION_START_STOPWATCH) in build()123 val reset: Intent = Intent(context, StopwatchService::class.java) in build()[all …]
24 import com.android.deskclock.stopwatch.StopwatchService35 StopwatchService.ACTION_PAUSE_STOPWATCH -> { in onCreate()41 .setAction(StopwatchService.ACTION_PAUSE_STOPWATCH)) in onCreate()44 StopwatchService.ACTION_START_STOPWATCH -> { in onCreate()50 .setAction(StopwatchService.ACTION_START_STOPWATCH)) in onCreate()
43 import com.android.deskclock.stopwatch.StopwatchService121 intent = Intent(StopwatchService.ACTION_PAUSE_STOPWATCH) in createStopwatchShortcut()126 intent = Intent(StopwatchService.ACTION_START_STOPWATCH) in createStopwatchShortcut()
36 class StopwatchService : Service() { class
174 if (StopwatchService.Companion.ACTION_START_STOPWATCH == action) { in <lambda>()178 } else if (StopwatchService.Companion.ACTION_PAUSE_STOPWATCH == action) { in <lambda>()