HomeSort by relevance Sort by last modified time
    Searched refs:maxTime (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
TestArgs.java 23 long maxTime;
33 maxTime = source.readLong();
47 dest.writeLong(maxTime);
FrameworkPerfActivity.java 260 args.maxTime = mMaxRunTime;
  /cts/hostsidetests/incident/src/com/android/server/cts/
BatteryStatsValidationTest.java 300 final int maxTime = 3000; // max single scan time in ms
304 assertValueRange("blem", "", 7, 1*minTime, 1*maxTime); // actualTime
305 assertValueRange("blem", "", 8, 1*minTime, 1*maxTime); // actualTimeBg
313 assertValueRange("blem", "", 7, 2*minTime, 2*maxTime); // actualTime
314 assertValueRange("blem", "", 8, 1*minTime, 1*maxTime); // actualTimeBg
322 assertValueRange("blem", "", 7, 3*minTime, 3*maxTime); // actualTime
323 assertValueRange("blem", "", 8, 2*minTime, 2*maxTime); // actualTimeBg
324 assertValueRange("blem", "", 11, 1*minTime, 1*maxTime); // unoptimizedScanTotalTime
325 assertValueRange("blem", "", 12, 1*minTime, 1*maxTime); // unoptimizedScanTotalTimeBg
326 assertValueRange("blem", "", 13, 1*minTime, 1*maxTime); // unoptimizedScanMaxTim
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLockTest.java 123 long maxTime = 0;
129 if (maxTime < elapsedTime) {
130 maxTime = elapsedTime;
142 Log.i("DatabaseLockLatency", "MaxTime: " + maxTime);
  /external/mdnsresponder/mDNSPosix/
parselog.py 70 maxTime=0
101 if (secs>maxTime):
102 maxTime=secs
165 #width=20.0*(maxTime-minTime)
166 if (maxTime < minTime + 10.0):
167 maxTime = minTime + 10.0
169 width=20.0*(maxTime-minTime)
171 scale = width/(maxTime-minTime)
225 for time in range (int(minTime),int(maxTime)+1):
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
ZoneOffsetPeriod.java 55 Instant minTime, Instant maxTime) {
63 // from minTime to maxTime.
64 end = maxTime;
69 long endTimeMillis = Math.min(nextTransition.getTime(), maxTime.toEpochMilli());
73 // from minTime to maxTime.
74 end = maxTime;
  /tools/tradefederation/core/src/com/android/tradefed/util/
IRunUtil.java 224 * @param maxTime the total approximate maximum time to keep trying the operation
226 * @return <code>true</code> if operation completed successfully before maxTime expired
229 final long maxTime, final IRunUtil.IRunnableResult runnable);
241 * @param maxTime the total approximate maximum time to keep trying the operation
243 * @return <code>true</code> if operation completed successfully before maxTime expired
246 final long maxPollInterval, final long maxTime, final IRunUtil.IRunnableResult
RunUtil.java 385 final long maxTime, final IRunUtil.IRunnableResult runnable) {
387 while (getCurrentTime() < (initialTime + maxTime)) {
402 final long initialPollInterval, final long maxPollInterval, final long maxTime,
411 long remainingTime = maxTime - (getCurrentTime() - initialTime);
413 CLog.d("operation is still failing after retrying for %d ms", maxTime);
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
sieve.cpp 159 double maxTime = times[0];
163 if(maxTime<times[i]) maxTime=times[i];
182 printf("min: %.9f, q1=%.9f, q2=%.9f, q3=%.9f, max=%.9f, n=%d\n", minTime,q1,q2,q3,maxTime, n);
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
LapsAdapter.java 235 * @param maxTime the maximum amount of time; used to choose a time format
236 * @param time the time to format guaranteed not to exceed {@code maxTime}
241 static String formatTime(long maxTime, long time, String separator) {
263 // The display of hours and minutes varies based on maxTime.
264 if (maxTime < TEN_MINUTES) {
266 } else if (maxTime < HOUR) {
268 } else if (maxTime < TEN_HOURS) {
272 } else if (maxTime < HUNDRED_HOURS) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
TimeClustering.java 130 long maxTime = 0;
135 minTime = maxTime = t;
138 maxTime = Math.max(maxTime, t);
142 setTimeRange(maxTime - minTime, n);
  /system/core/logd/
LogStatistics.cpp 690 uint64_t maxTime = 0;
713 if (maxTime < newest) maxTime = newest;
736 if ((maxTime > minTime) && ((maxTime -= minTime) < totalSize) &&
737 (maxTime > maxSpan)) {
738 maxSpan = maxTime;
  /frameworks/base/core/java/android/app/
AppOpsManager.java     [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
RunUtilTest.java 196 * fails when operation continually fails, and that the maxTime variable is respected.
230 long maxTime = 10;
231 assertFalse(runUtil.runEscalatingTimedRetry(1, 1, 512, maxTime, mockRunnable));
232 assertEquals(maxTime, mSleepTime);
  /prebuilts/go/darwin-x86/src/go/internal/srcimporter/
srcimporter_test.go 20 const maxTime = 2 * time.Second
83 dt := maxTime
  /prebuilts/go/linux-x86/src/go/internal/srcimporter/
srcimporter_test.go 20 const maxTime = 2 * time.Second
83 dt := maxTime
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
main.py 82 def __init__(self, tests, maxTime):
83 self.maxTime = maxTime
90 if self.maxTime is not None:
91 if time.time() - self.startTime > self.maxTime:
426 group.add_option("", "--max-time", dest="maxTime", metavar="N",
578 provider = TestProvider(tests, opts.maxTime)
  /external/lz4/programs/
bench.c 223 U64 const maxTime = (g_nbSeconds * TIMELOOP_MICROSEC) + 100;
267 cCompleted = totalCTime>maxTime;
307 dCompleted = totalDTime>(DECOMP_MULT*maxTime);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryInfo.java 113 int maxTime = points.keyAt(points.size() - 1);
114 view.configureGraph(maxTime, 100);
  /external/llvm/utils/Misc/
zkill 197 group.add_option("", "--max-time", dest="maxTime", metavar="N",
254 if opts.minTime <= p.cpu_time <= opts.maxTime]
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
gcimporter_test.go 60 const maxTime = 30 * time.Second
191 dt := maxTime
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter_test.go 60 const maxTime = 30 * time.Second
191 dt := maxTime
  /external/swiftshader/third_party/LLVM/utils/Misc/
zkill 197 group.add_option("", "--max-time", dest="maxTime", metavar="N",
254 if opts.minTime <= p.cpu_time <= opts.maxTime]
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.0.CR3/
netty-handler-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-handler/4.1.3.Final/
netty-handler-4.1.3.Final.jar 

Completed in 878 milliseconds

1 2