Searched refs:timestampMs (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/ |
D | BatteryDatabaseManager.java | 86 long timestampMs) { in insertAnomaly() argument 93 values.put(TIME_STAMP_MS, timestampMs); in insertAnomaly() 134 public synchronized void deleteAllAnomaliesBeforeTimeStamp(long timestampMs) { in deleteAllAnomaliesBeforeTimeStamp() argument 137 new String[]{String.valueOf(timestampMs)}); in deleteAllAnomaliesBeforeTimeStamp() 195 int uid, String packageName, long timestampMs) { in insertAction() argument 201 values.put(ActionColumns.TIME_STAMP_MS, timestampMs); in insertAction()
|
/packages/apps/Camera2/src/com/android/camera/util/ |
D | ExifUtil.java | 102 Long timestampMs = System.currentTimeMillis(); 104 mExif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME, timestampMs, timezone); 105 mExif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME_DIGITIZED, timestampMs, timezone); 106 mExif.addDateTimeStampTag(ExifInterface.TAG_DATE_TIME_ORIGINAL, timestampMs, timezone); 108 Long subSeconds = timestampMs % MS_TO_S;
|
/packages/modules/StatsD/aidl/android/os/ |
D | IStatsCompanionService.aidl | 35 oneway void setAnomalyAlarm(long timestampMs); in setAnomalyAlarm() argument 57 oneway void setAlarmForSubscriberTriggering(long timestampMs); in setAlarmForSubscriberTriggering() argument
|
/packages/modules/StatsD/service/java/com/android/server/stats/ |
D | StatsCompanionService.java | 493 public void setAnomalyAlarm(long timestampMs) { in setAnomalyAlarm() argument 495 if (DEBUG) Log.d(TAG, "Setting anomaly alarm for " + timestampMs); in setAnomalyAlarm() 501 mAlarmManager.setExact(AlarmManager.ELAPSED_REALTIME, timestampMs, TAG + ".anomaly", in setAnomalyAlarm() 521 public void setAlarmForSubscriberTriggering(long timestampMs) { in setAlarmForSubscriberTriggering() argument 525 "Setting periodic alarm in about " + (timestampMs in setAlarmForSubscriberTriggering() 532 mAlarmManager.setExact(AlarmManager.ELAPSED_REALTIME, timestampMs, TAG + ".periodic", in setAlarmForSubscriberTriggering()
|
/packages/modules/StatsD/tests/src/android/cts/statsd/atom/ |
D | AtomTestCase.java | 1030 long timestampMs = getDevice().getDeviceDate(); in getCurrentLogcatDate() local 1032 .format(new Date(timestampMs)); in getCurrentLogcatDate()
|