Lines Matching refs:operation

332      * @param operation Action to perform when the alarm goes off;
349 public void set(@AlarmType int type, long triggerAtMillis, PendingIntent operation) {
350 setImpl(type, triggerAtMillis, legacyExactLength(), 0, 0, operation, null, null,
420 * @param operation Action to perform when the alarm goes off;
438 long intervalMillis, PendingIntent operation) {
439 setImpl(type, triggerAtMillis, legacyExactLength(), intervalMillis, 0, operation,
471 * @param operation Action to perform when the alarm goes off;
488 PendingIntent operation) {
489 setImpl(type, windowStartMillis, windowLengthMillis, 0, 0, operation,
525 * @param operation Action to perform when the alarm goes off;
541 public void setExact(@AlarmType int type, long triggerAtMillis, PendingIntent operation) {
542 setImpl(type, triggerAtMillis, WINDOW_EXACT, 0, 0, operation, null, null, null,
594 * @param operation Action to perform when the alarm goes off;
608 public void setAlarmClock(AlarmClockInfo info, PendingIntent operation) {
609 setImpl(RTC_WAKEUP, info.getTriggerTime(), WINDOW_EXACT, 0, 0, operation,
617 long intervalMillis, PendingIntent operation, WorkSource workSource) {
618 setImpl(type, triggerAtMillis, windowMillis, intervalMillis, 0, operation, null, null,
659 long intervalMillis, int flags, PendingIntent operation, final OnAlarmListener listener,
694 operation, recipientWrapper, listenerTag, workSource, alarmClock);
772 * @param operation Action to perform when the alarm goes off;
793 long intervalMillis, PendingIntent operation) {
794 setImpl(type, triggerAtMillis, WINDOW_HEURISTIC, intervalMillis, 0, operation, null,
811 * Under normal system operation, it will not dispatch these
827 * @param operation Action to perform when the alarm goes off;
843 PendingIntent operation) {
845 operation, null, null, null, null, null);
863 * Under normal system operation, it will not dispatch these
880 * @param operation Action to perform when the alarm goes off;
897 PendingIntent operation) {
898 setImpl(type, triggerAtMillis, WINDOW_EXACT, 0, FLAG_ALLOW_WHILE_IDLE, operation,
907 * @param operation IntentSender which matches a previously added
912 public void cancel(PendingIntent operation) {
913 if (operation == null) {
924 mService.remove(operation, null);