Home
last modified time | relevance | path

Searched refs:TIMESTAMP (Results 1 – 25 of 42) sorted by relevance

12

/packages/modules/ImsMedia/tests/unit/src/com/android/telephony/imsmedia/
DRtpContextParamsTest.java34 private static final long TIMESTAMP = 3277537485L; field in RtpContextParamsTest
45 assertThat(rtpContextParams.getTimestamp()).isEqualTo(TIMESTAMP); in testConstructorAndGetters()
75 .setTimestamp(TIMESTAMP) in testNotEqual()
91 .setTimestamp(TIMESTAMP) in testNotEqual()
102 .setTimestamp(TIMESTAMP) in testInvalidSsrc()
112 .setTimestamp(TIMESTAMP) in testNegativeSsrc()
142 .setTimestamp(TIMESTAMP) in testInvalidSequenceNumber()
152 .setTimestamp(TIMESTAMP) in testNegativeSequenceNumber()
161 .setTimestamp(TIMESTAMP) in createRtpContextParams()
DTextConfigTest.java55 private static final long TIMESTAMP = 3277637148L; field in TextConfigTest
67 .setTimestamp(TIMESTAMP)
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivityservice/
DCSNetworkActivityTest.kt61 private const val TIMESTAMP = 1234L in <lambda>() constant
130 cellAgent.network.netId, TIMESTAMP, NETWORK_ACTIVITY_NO_UID) in <lambda>()
141 cellAgent.network.netId, TIMESTAMP, PACKAGE_UID) in <lambda>()
212 imsNetworkAgent.network.netId, TIMESTAMP, NETWORK_ACTIVITY_NO_UID) in <lambda>()
214 dataNetworkAgent.network.netId, TIMESTAMP, NETWORK_ACTIVITY_NO_UID) in <lambda>()
218 dataNetworkAgent.network.netId, TIMESTAMP, PACKAGE_UID) in <lambda>()
224 imsNetworkAgent.network.netId, TIMESTAMP, PACKAGE_UID) in <lambda>()
232 dataNetworkAgent.network.netId, TIMESTAMP, NETWORK_ACTIVITY_NO_UID) in <lambda>()
240 imsNetworkAgent.network.netId, TIMESTAMP, NETWORK_ACTIVITY_NO_UID) in <lambda>()
DCSDestroySocketTest.kt43 private const val TIMESTAMP = 1234L constant
88 TIMESTAMP, in doTestBackgroundRestrictionDestroySockets()
113 TIMESTAMP, in doTestBackgroundRestrictionDestroySockets()
166 TIMESTAMP, in testReplaceFirewallChain()
202 TIMESTAMP, in testReplaceFirewallChain()
227 TIMESTAMP, in doTestDestroySockets()
273 TIMESTAMP, in doTestDestroySockets()
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
DVoicemailCursorLoader.java39 AnnotatedCallLog.TIMESTAMP,
56 private static final int TIMESTAMP = 1; field in VoicemailCursorLoader
78 AnnotatedCallLog.TIMESTAMP + " DESC"); in VoicemailCursorLoader()
106 .setTimestamp(cursor.getLong(TIMESTAMP)) in toVoicemailEntry()
148 return cursor.getLong(TIMESTAMP); in getTimestamp()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/discovery/info/
DRegulatoryInfoTest.java45 private static final int TIMESTAMP = 1646148479; field in RegulatoryInfoTest
90 assertThat(info.timestampSecondsSinceEpoch).isEqualTo(TIMESTAMP); in fromBytes_succeed()
106 TIMESTAMP, in toBytes_succeed()
135 TIMESTAMP, in testSourceOfInfo()
155 assertThat(regulatoryInfoResult.timestampSecondsSinceEpoch).isEqualTo(TIMESTAMP); in testSourceOfInfo()
/packages/apps/Dialer/java/com/android/dialer/calldetails/
DCallDetailsCursorLoader.java42 AnnotatedCallLog.TIMESTAMP,
53 private static final int TIMESTAMP = 3; field in CallDetailsCursorLoader
66 AnnotatedCallLog.TIMESTAMP + " DESC"); in CallDetailsCursorLoader()
142 .setDate(cursor.getLong(TIMESTAMP)) in toCallDetailsEntry()
/packages/modules/Connectivity/tests/common/java/android/net/
DConnectivityDiagnosticsManagerTest.java59 private static final long TIMESTAMP = 10L; field in ConnectivityDiagnosticsManagerTest
105 new Network(NET_ID), TIMESTAMP, linkProperties, networkCapabilities, bundle); in createSampleConnectivityReport()
173 TIMESTAMP, in testConnectivityReportEquals()
189 TIMESTAMP, in testConnectivityReportEquals()
197 TIMESTAMP, in testConnectivityReportEquals()
220 TIMESTAMP, in createSampleDataStallReport()
261 TIMESTAMP, in testDataStallReportEquals()
/packages/modules/Connectivity/staticlibs/tests/unit/src/com/android/net/module/util/
DSharedLogTest.java42 private static final String TIMESTAMP = "HH:MM:SS"; field in SharedLogTest
127 assertTrue(String.format("'%s' did not contain a %s timestamp", got, TIMESTAMP), in verifyLogLines()
128 got.replaceFirst(TIMESTAMP_PATTERN, TIMESTAMP).contains(TIMESTAMP)); in verifyLogLines()
/packages/modules/Uwb/service/support_lib/test/
DRadarTests.java49 private static final long TIMESTAMP = 1000; field in RadarTests
235 .setTimestamp(TIMESTAMP) in testRadarSweepData()
241 assertEquals(data.getTimestamp(), TIMESTAMP); in testRadarSweepData() local
248 assertEquals(fromBundle.getTimestamp(), TIMESTAMP); in testRadarSweepData() local
256 .setTimestamp(TIMESTAMP) in testRadarSweepData()
302 .setTimestamp(TIMESTAMP) in testRadarData()
309 .setTimestamp(TIMESTAMP) in testRadarData()
/packages/apps/DocumentsUI/src/com/android/documentsui/picker/
DLastAccessedProvider.java73 public static final String TIMESTAMP = "timestamp"; field in LastAccessedProvider.Columns
106 Columns.TIMESTAMP + " INTEGER," + in onCreate()
173 values.put(Columns.TIMESTAMP, System.currentTimeMillis()); in insert()
/packages/apps/Dialer/java/com/android/dialer/calllog/database/
DAnnotatedCallLogDatabaseHelper.java75 + (AnnotatedCallLog.TIMESTAMP + " integer, ")
187 + AnnotatedCallLog.TIMESTAMP); in upgradeToV2()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppProvider.java173 + BluetoothShare.TIMESTAMP in createTable()
281 BluetoothShare.TOTAL_BYTES, BluetoothShare.TIMESTAMP)); in oppDatabaseMigration()
339 Long ts = values.getAsLong(BluetoothShare.TIMESTAMP); in insert()
343 filteredValues.put(BluetoothShare.TIMESTAMP, ts); in insert()
DBluetoothOppNotification.java305 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP); in updateActiveNotification()
474 BluetoothShare.TIMESTAMP + " DESC"); in updateCompletedNotification()
479 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP); in updateCompletedNotification()
566 BluetoothShare.TIMESTAMP + " DESC"); in updateCompletedNotification()
DBluetoothShare.java178 public static final String TIMESTAMP = "timestamp"; field in BluetoothShare
DBluetoothOppTransferHistory.java140 final String sortOrder = BluetoothShare.TIMESTAMP + " DESC"; in onCreate()
152 BluetoothShare.TIMESTAMP, in onCreate()
DBluetoothOppTransferAdapter.java122 int dateColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP); in bindView()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/opp/
DBluetoothOppNotificationTest.java141 BluetoothShare.TIMESTAMP, in updateActiveNotification()
220 BluetoothShare.TIMESTAMP, in updateCompletedNotification_withOutBoundShare_showsNoti()
300 BluetoothShare.TIMESTAMP, in updateCompletedNotification_withInBoundShare_showsNoti()
383 BluetoothShare.TIMESTAMP, BluetoothShare.DIRECTION, BluetoothShare._ID, in updateIncomingFileConfirmationNotification()
DBluetoothOppReceiverTest.java359 BluetoothShare.TIMESTAMP, 6, timestampValue), in onReceive_withActionTransferCompletedAndHandoverInitiated_contextSendBroadcast()
415 BluetoothShare.TIMESTAMP, 6, timestampValue), in onReceive_withActionTransferComplete_noBroadcastSent()
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DDatabaseHelper.java341 public static final String TIMESTAMP = "timestamp"; field in DatabaseHelper.PartColumns
356 + PartColumns.TIMESTAMP + " INT, "
368 + " SET " + PartColumns.TIMESTAMP + "="
377 + " FOR EACH ROW BEGIN UPDATE " + PARTS_TABLE + " SET " + PartColumns.TIMESTAMP
/packages/apps/Dialer/java/com/android/dialer/calllog/ui/
DAnnotatedCallLogCursorLoader.java34 /* sortOrder = */ AnnotatedCallLog.TIMESTAMP + " DESC"); in AnnotatedCallLogCursorLoader()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DConnectivityDiagnosticsManagerTest.java115 private static final long TIMESTAMP = 123456789L; field in ConnectivityDiagnosticsManagerTest
389 verifyOnDataStallSuspected(DETECTION_METHOD_DNS_EVENTS, TIMESTAMP, extras); in testOnDataStallSuspected_DnsEvents()
398 verifyOnDataStallSuspected(DETECTION_METHOD_TCP_METRICS, TIMESTAMP, extras); in testOnDataStallSuspected_TcpMetrics()
406 TIMESTAMP, in testOnDataStallSuspected_UnknownDetectionMethod()
/packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
DAnnotatedCallLogContract.java53 public static final String TIMESTAMP = "timestamp"; field in AnnotatedCallLogContract.AnnotatedCallLog
/packages/apps/Dialer/java/com/android/dialer/voicemail/model/
Dvoicemail_entry.proto17 // Value in column AnnotatedCallLog.TIMESTAMP
/packages/apps/Dialer/java/com/android/dialer/calllog/model/
Dcoalesced_row.proto19 // Value in column CoalescedAnnotatedCallLog.TIMESTAMP

12