Lines Matching refs:operation

190      * @param operation Action to perform when the alarm goes off;
207 public void set(int type, long triggerAtMillis, PendingIntent operation) {
208 setImpl(type, triggerAtMillis, legacyExactLength(), 0, operation, null, null);
250 * @param operation Action to perform when the alarm goes off;
268 long intervalMillis, PendingIntent operation) {
269 setImpl(type, triggerAtMillis, legacyExactLength(), intervalMillis, operation, null, null);
301 * @param operation Action to perform when the alarm goes off;
318 PendingIntent operation) {
319 setImpl(type, windowStartMillis, windowLengthMillis, 0, operation, null, null);
340 * @param operation Action to perform when the alarm goes off;
356 public void setExact(int type, long triggerAtMillis, PendingIntent operation) {
357 setImpl(type, triggerAtMillis, WINDOW_EXACT, 0, operation, null, null);
370 * @param operation Action to perform when the alarm goes off;
384 public void setAlarmClock(AlarmClockInfo info, PendingIntent operation) {
385 setImpl(RTC_WAKEUP, info.getTriggerTime(), WINDOW_EXACT, 0, operation, null, info);
391 PendingIntent operation, WorkSource workSource) {
392 setImpl(type, triggerAtMillis, windowMillis, intervalMillis, operation, workSource, null);
396 PendingIntent operation, WorkSource workSource, AlarmClockInfo alarmClock) {
409 mService.set(type, triggerAtMillis, windowMillis, intervalMillis, operation,
488 * @param operation Action to perform when the alarm goes off;
509 long intervalMillis, PendingIntent operation) {
510 setImpl(type, triggerAtMillis, WINDOW_HEURISTIC, intervalMillis, operation, null, null);
518 * @param operation IntentSender which matches a previously added
523 public void cancel(PendingIntent operation) {
525 mService.remove(operation);