HomeSort by relevance Sort by last modified time
    Searched refs:startTimestamp (Results 1 - 24 of 24) sorted by null

  /test/vti/dashboard/src/main/java/com/android/vts/entity/
TestPlanRunEntity.java 38 public static final String START_TIMESTAMP = "startTimestamp";
48 public final long startTimestamp;
60 * @param startTimestamp The time in microseconds when the test plan run started.
68 long startTimestamp, long endTimestamp, String testBuildId, long passCount,
70 this.key = KeyFactory.createKey(parentKey, KIND, startTimestamp);
73 this.startTimestamp = startTimestamp;
86 planRun.setProperty(START_TIMESTAMP, this.startTimestamp);
116 long startTimestamp = (long) e.getProperty(START_TIMESTAMP);
122 return new TestPlanRunEntity(e.getKey().getParent(), testPlanName, type, startTimestamp,
    [all...]
TestRunEntity.java 107 public static final String START_TIMESTAMP = "startTimestamp";
121 public final long startTimestamp;
138 * @param startTimestamp The time in microseconds when the test run started.
149 public TestRunEntity(Key parentKey, TestRunType type, long startTimestamp, long endTimestamp,
153 this.key = KeyFactory.createKey(parentKey, KIND, startTimestamp);
155 this.startTimestamp = startTimestamp;
173 * @param startTimestamp The time in microseconds when the test run started.
182 public TestRunEntity(Key parentKey, TestRunType type, long startTimestamp, long endTimestamp,
185 this(parentKey, type, startTimestamp, endTimestamp, testBuildId, hostName, passCount
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
SyncMessagesAction.java 83 final long startTimestamp = now - smsSyncBackoffTimeMillis;
85 final SyncMessagesAction action = new SyncMessagesAction(-1L, startTimestamp,
86 0, startTimestamp);
101 final long startTimestamp = now - smsSyncBackoffTimeMillis;
103 sync(startTimestamp);
113 final long startTimestamp = now;
115 sync(startTimestamp);
118 private static void sync(final long startTimestamp) {
130 startTimestamp, 0, startTimestamp);
    [all...]
  /test/vti/dashboard/src/main/webapp/js/
plan_runs.js 28 '&time=' + entry.testPlanRun.startTimestamp);
32 var startTime = entry.testPlanRun.startTimestamp;
test_results.js 197 var startTime = metadata.testRun.startTimestamp;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
SyncManager.java 184 * @param startTimestamp - starttimestamp for this sync (if allowed)
187 public synchronized boolean shouldSync(final boolean full, final long startTimestamp) {
190 + "at " + startTimestamp);
194 final long delayUntilFullSync = delayUntilFullSync(startTimestamp);
197 LogUtil.d(TAG, "SyncManager: Full sync requested for " + startTimestamp
213 + startTimestamp);
216 mSyncInProgressTimestamp = startTimestamp;
223 * @param startTimestamp Timestamp used to start the sync
226 public long delayUntilFullSync(final long startTimestamp) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
ProcessLoggingHandler.java 57 long startTimestamp = bundle.getLong("startTimestamp");
60 startTimestamp, uid, pid, seinfo, apkHash);
  /test/vti/dashboard/src/main/java/com/android/vts/api/
TestDataForDevServlet.java 88 private long startTimestamp;
207 testRun.startTimestamp);
218 testRun.startTimestamp, (int) testRun.passCount, failingTestCases.size(),
269 TestRunType.fromNumber(testRun.type), testRun.startTimestamp,
321 long startTimestamp = -1;
333 if (startTimestamp < 0 || testRunKey.getId() < startTimestamp) {
334 startTimestamp = testRunKey.getId();
354 if (startTimestamp < 0 || testBuildId == null || type == null) {
360 type, startTimestamp, endTimestamp, testBuildId, passCount, failCount
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/util/
DatastoreHelper.java 177 long startTimestamp = report.getStartTimestamp();
333 startTimestamp,
427 long startTimestamp = -1;
439 if (startTimestamp < 0 || testRunKey.getId() < startTimestamp) {
440 startTimestamp = testRunKey.getId();
460 if (startTimestamp < 0 || testBuildId == null || type == null) {
469 startTimestamp,
TestResults.java 114 if (testRunEntity.startTimestamp < startTime) {
115 startTime = testRunEntity.startTimestamp;
224 testRuns.sort((t1, t2) -> new Long(t2.startTimestamp).compareTo(t1.startTimestamp));
361 + testRun.startTimestamp
433 timeGrid[0][col + 1] = Long.toString(testRun.startTimestamp);
437 durationGrid[0][col + 1] = Long.toString(testRun.endTimestamp - testRun.startTimestamp);
EmailHelper.java 72 sb.append("Start Time: " + TimeUtil.getDateTimeString(testRun.startTimestamp));
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowPlanReleaseServlet.java 94 return new Long(o.testPlanRun.startTimestamp)
95 .compareTo(this.testPlanRun.startTimestamp);
215 endTime = firstRun.testPlanRun.startTimestamp;
218 startTime = lastRun.testPlanRun.startTimestamp;
ShowTreeServlet.java 256 new Long(t2.testRun.startTimestamp).compareTo(t1.testRun.startTimestamp));
274 endTime = firstRun.testRun.startTimestamp;
282 startTime = lastRun.testRun.startTimestamp;
ShowGreenReleaseServlet.java 323 return entity.startTimestamp;
357 .map(entity -> entity.startTimestamp)
ShowPlanRunServlet.java 108 startTime = testPlanRun.startTimestamp;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareDataPathStateManager.java 313 mAwareMetrics.recordNdpStatus(reason, networkSpecifier.isOutOfBand(), nnri.startTimestamp);
391 nnri.startTimestamp = SystemClock.elapsedRealtime();
436 nnri.startTimestamp);
545 nnri.startTimestamp);
546 nnri.startTimestamp = SystemClock.elapsedRealtime(); // update time-stamp for duration
555 nnri.startTimestamp);
582 mAwareMetrics.recordNdpSessionDuration(nnriE.getValue().startTimestamp);
651 nnri.networkSpecifier.isOutOfBand(), nnri.startTimestamp);
    [all...]
WifiAwareMetrics.java 463 public void recordNdpStatus(int status, boolean isOutOfBand, long startTimestamp) {
472 long creationTime = mClock.getElapsedSinceBootMillis() - startTimestamp;
    [all...]
  /system/extras/tests/workloads/
systemapps.sh 139 startTimestamp=$(date +"%s %N")
243 diffTime=$(computeTimeDiff $startTimestamp $endTimestamp)
  /frameworks/base/core/java/android/app/usage/
NetworkStats.java 104 NetworkStats(Context context, NetworkTemplate template, int flags, long startTimestamp,
111 mStartTimeStamp = startTimestamp;
  /test/vti/dashboard/src/main/java/com/android/vts/job/
VtsAlertJobServlet.java 415 String uploadDateString = TimeUtil.getDateString(mostRecentRun.startTimestamp);
477 mostRecentRun.startTimestamp,
VtsCoverageAlertJobServlet.java 262 testRunEntity.startTimestamp,
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-datapipeline/1.11.18/
aws-java-sdk-datapipeline-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-simpleworkflow/1.11.18/
aws-java-sdk-simpleworkflow-1.11.18.jar 
  /prebuilts/tools/common/google-api-services-compute/
google-api-services-compute-v1-rev181-1.23.0.jar 

Completed in 7295 milliseconds