Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DAlarmManager.java207 public void set(int type, long triggerAtMillis, PendingIntent operation) { in set() argument
208 setImpl(type, triggerAtMillis, legacyExactLength(), 0, operation, null, null); in set()
267 public void setRepeating(int type, long triggerAtMillis, in setRepeating() argument
269 setImpl(type, triggerAtMillis, legacyExactLength(), intervalMillis, operation, null, null); in setRepeating()
356 public void setExact(int type, long triggerAtMillis, PendingIntent operation) { in setExact() argument
357 setImpl(type, triggerAtMillis, WINDOW_EXACT, 0, operation, null, null); in setExact()
390 public void set(int type, long triggerAtMillis, long windowMillis, long intervalMillis, in set() argument
392 setImpl(type, triggerAtMillis, windowMillis, intervalMillis, operation, workSource, null); in set()
395 private void setImpl(int type, long triggerAtMillis, long windowMillis, long intervalMillis, in setImpl() argument
397 if (triggerAtMillis < 0) { in setImpl()
[all …]