Home
last modified time | relevance | path

Searched refs:ms (Results 1 – 25 of 45) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/os/storage/
DAsecTests.java53 IMountService ms = getMs(); in cleanupContainers() local
54 String[] containers = ms.getSecureContainerList(); in cleanupContainers()
60 ms.destroySecureContainer(containers[i], true); in cleanupContainers()
66 IMountService ms = getMs(); in containerExists() local
67 String[] containers = ms.getSecureContainerList(); in containerExists()
83 IMountService ms = getMs(); in createContainer() local
84 return ms.createSecureContainer(fullId, size, filesystem, key, android.os.Process.myUid(), in createContainer()
92 IMountService ms = getMs(); in mountContainer() local
93 return ms.mountSecureContainer(fullId, key, android.os.Process.myUid(), true); in mountContainer()
101 IMountService ms = getMs(); in renameContainer() local
[all …]
/frameworks/compile/libbcc/
DREADME.rst61 App_1 1218ms 9ms
62 App_2 842ms 4ms
64 MagicSmoke 182ms 3ms
65 Halo 127ms 3ms
66 Balls 149ms 3ms
67 SceneGraph 146ms 90ms
68 Model 104ms 4ms
69 Fountain 57ms 3ms
/frameworks/base/services/core/java/com/android/server/
DMountServiceIdler.java61 MountService ms = MountService.sSelf; in onStartJob() local
62 if (ms != null) { in onStartJob()
66 ms.runIdleMaintenance(mFinishCallback); in onStartJob()
68 return ms != null; in onStartJob()
/frameworks/base/core/java/android/os/
DSystemClock.java113 public static void sleep(long ms) in sleep() argument
116 long duration = ms; in sleep()
125 duration = start + ms - uptimeMillis(); in sleep()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DPlaybackControlsRow.java590 public void setTotalTime(int ms) {
591 mTotalTimeMs = ms;
604 public void setCurrentTime(int ms) {
605 if (mCurrentTimeMs != ms) {
606 mCurrentTimeMs = ms;
621 public void setBufferedProgress(int ms) {
622 if (mBufferedProgressMs != ms) {
623 mBufferedProgressMs = ms;
DPlaybackControlsPresenter.java235 public void setTotalTime(ViewHolder vh, int ms) { in setTotalTime() argument
236 vh.setTotalTime(ms); in setTotalTime()
243 public void setCurrentTime(ViewHolder vh, int ms) { in setCurrentTime() argument
244 vh.setCurrentTime(ms); in setCurrentTime()
DPlaybackControlsRowPresenter.java66 public void onCurrentTimeChanged(int ms) {
67 mPlaybackControlsPresenter.setCurrentTime(mControlsVh, ms);
70 public void onBufferedProgressChanged(int ms) {
71 mPlaybackControlsPresenter.setSecondaryProgress(mControlsVh, ms);
/frameworks/testing/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
DUiAutomatorTestCase.java98 public void sleep(long ms) { in sleep() argument
99 SystemClock.sleep(ms); in sleep()
/frameworks/base/core/tests/coretests/src/android/content/pm/
DPackageHelperTests.java50 IMountService ms = getMs(); in cleanupContainers() local
51 String[] containers = ms.getSecureContainerList(); in cleanupContainers()
55 ms.destroySecureContainer(containers[i], true); in cleanupContainers()
/frameworks/native/cmds/flatland/
DREADME.txt29 measured, each sample measurement runs for between 50 and 200 ms, so a sleep
30 time between 10 and 50 ms should address most thermal problems.
38 Scenario | Resolution | Time (ms)
58 reliably benchmarked. This corresponds to a frame time less than 3 ms.
63 complete. This corresponds to a frame time over 50 ms. Rather than
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
DUiAutomatorTestCase.java120 public void sleep(long ms) { in sleep() argument
121 SystemClock.sleep(ms); in sleep()
/frameworks/av/media/libstagefright/webm/
DWebmWriter.h50 virtual void setStartTimeOffsetMs(int ms) { mStartTimeOffsetMs = ms; } in setStartTimeOffsetMs() argument
/frameworks/av/include/media/stagefright/
DMPEG4Writer.h66 virtual void setStartTimeOffsetMs(int ms) { mStartTimeOffsetMs = ms; } in setStartTimeOffsetMs() argument
DMediaWriter.h51 virtual void setStartTimeOffsetMs(int ms) {} in setStartTimeOffsetMs()
/frameworks/base/docs/html/training/improving-layouts/
Doptimizing-layout.jd98 <li>Measure: 0.977ms</li>
99 <li>Layout: 0.167ms</li>
100 <li>Draw: 2.717ms</li>
119 <li>Measure: 0.598ms</li>
120 <li>Layout: 0.110ms</li>
121 <li>Draw: 2.146ms</li>
/frameworks/base/core/jni/android/graphics/
DMovie.cpp65 static jboolean movie_setTime(JNIEnv* env, jobject movie, jint ms) { in movie_setTime() argument
67 return J2Movie(env, movie)->setTime(ms) ? JNI_TRUE : JNI_FALSE; in movie_setTime()
/frameworks/testing/uiautomator/utils/SleepUtils/
DREADME18 -e param <time in ms> com.android.testing.sleephelper/.SetAlarm
/frameworks/ex/common/java/com/android/common/
DOperationScheduler.java273 long ms = Long.valueOf(retryAfter) * 1000; in setMoratoriumTimeHttp() local
274 setMoratoriumTimeMillis(ms + currentTimeMillis()); in setMoratoriumTimeHttp()
/frameworks/base/docs/html/guide/topics/graphics/
Dprop-animation.jd71 <li>Duration: You can specify the duration of an animation. The default length is 300 ms.</li>
85 …default is set to refresh every 10 ms, but the speed in which your application can refresh frames…
94 horizontal location on a screen. The duration of the animation is set to 40 ms and the distance
95 to travel is 40 pixels. Every 10 ms, which is the default frame refresh rate, the object moves
96 horizontally by 10 pixels. At the end of 40ms, the animation stops, and the object ends at
104 end of the animation. The object still moves 40 pixels in 40 ms, but non-linearly. In the
135 and 1 meaning 100%. For example, in Figure 1, the elapsed fraction at t = 10 ms would be .25
136 because the total duration is t = 40 ms.</p>
143 elapsed fraction, .25, at t = 10 ms. In Figure 1, the interpolated fraction is always the same as
150 10 ms, so the value for the property at that time would be .15 X (40 - 0), or 6.</p>
[all …]
/frameworks/base/tools/orientationplot/
DREADME.txt70 should be a fairly constant 60ms. If the latency jumps around wildly or
71 greatly exceeds 60ms then there is a problem with the accelerometer or the
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
DTimeZoneInfo.java303 long ms = s * 1000L; in formatTime() local
304 return df.format(new Date(ms)); in formatTime()
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipWakeupTimer.java280 int ms = (int) (time % 1000); in showTime() local
284 return String.format("%d.%d.%d", m, s, ms); in showTime()
/frameworks/base/graphics/java/android/graphics/drawable/
DDrawableContainer.java209 public void setEnterFadeDuration(int ms) { in setEnterFadeDuration() argument
210 mDrawableContainerState.mEnterFadeDuration = ms; in setEnterFadeDuration()
218 public void setExitFadeDuration(int ms) { in setExitFadeDuration() argument
219 mDrawableContainerState.mExitFadeDuration = ms; in setExitFadeDuration()
/frameworks/native/cmds/dumpstate/
Ddumpstate.c383 static void vibrate(FILE* vibrator, int ms) { in vibrate() argument
384 fprintf(vibrator, "%d\n", ms); in vibrate()
/frameworks/av/media/libstagefright/rtsp/
DARTPWriter.cpp322 uint32_t ms = tolel(ALooper::GetNowUs() / 1000ll); in send() local
324 write(fd, &ms, sizeof(ms)); in send()

12