Searched defs:mTimeout (Results 1 - 13 of 13) sorted by relevance

/frameworks/support/core-ui/tests/java/android/support/v4/testutils/
H A DPollingCheck.java25 private long mTimeout = 3000; field in class:PollingCheck
35 mTimeout = timeout;
45 long timeout = mTimeout;
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/bots/
H A DBaseBot.java37 final int mTimeout; field in class:BaseBot
42 mTimeout = timeout;
55 mDevice.wait(Until.findObject(selector), mTimeout);
72 mDevice.waitForIdle(mTimeout);
/frameworks/base/core/java/android/service/gatekeeper/
H A DGateKeeperResponse.java34 private int mTimeout; field in class:GateKeeperResponse
82 dest.writeInt(mTimeout);
99 return mTimeout;
111 mTimeout = timeout;
/frameworks/base/core/java/android/util/
H A DNtpTrustedTime.java43 private final long mTimeout; field in class:NtpTrustedTime
55 mTimeout = timeout;
104 if (client.requestTime(mServer, (int) mTimeout)) {
/frameworks/base/core/java/com/android/internal/widget/
H A DVerifyCredentialResponse.java38 private int mTimeout; field in class:VerifyCredentialResponse
78 mTimeout = timeout;
85 mTimeout = timeout;
93 dest.writeInt(mTimeout);
112 return mTimeout;
120 mTimeout = timeout;
/frameworks/base/packages/Shell/tests/src/com/android/shell/
H A DUiBot.java38 private final int mTimeout; field in class:UiBot
42 mTimeout = timeout;
54 boolean gotIt = mDevice.wait(Until.hasObject(By.pkg(SYSTEMUI_PACKAGE)), mTimeout);
76 boolean gotIt = mDevice.wait(Until.hasObject(By.text(text)), mTimeout);
87 boolean gotIt = mDevice.wait(Until.hasObject(By.res(id)), mTimeout);
146 boolean gotIt = mDevice.wait(Until.hasObject(By.text(shareText)), mTimeout);
175 boolean gotIt = mDevice.wait(Until.hasObject(By.res("android", "button_once")), mTimeout);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardMessageArea.java51 long mTimeout = SECURITY_MESSAGE_DURATION; field in class:KeyguardMessageArea
124 mTimeout = timeoutMs;
146 if (mTimeout > 0) {
147 mHandler.postDelayed(mClearMessageRunnable, mTimeout);
/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java71 int mTimeout; field in class:TestWebServer
128 mTimeout = timeout;
649 s.setSoTimeout(mTimeout);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLaunchpadActivity.java225 mHandler.postDelayed(mTimeout, 5 * 1000);
458 mHandler.removeCallbacks(mTimeout);
569 private Runnable mTimeout = new Runnable() { field in class:LaunchpadActivity
/frameworks/base/services/core/java/com/android/server/
H A DVibratorService.java98 private final long mTimeout; field in class:VibratorService.Vibration
118 mTimeout = millis;
138 if (mTimeout == 0) {
143 if ((mStartTime + mTimeout)
384 mPreviousVibrations.addLast(new VibratorService.VibrationInfo(vib.mTimeout, vib.mStartTime,
477 if (vib.mTimeout != 0) {
478 doVibratorOn(vib.mTimeout, vib.mUid, vib.mUsageHint);
479 mH.postDelayed(mVibrationRunnable, vib.mTimeout);
/frameworks/base/services/net/java/android/net/dhcp/
H A DDhcpClient.java659 * sets mTimeout to a positive value, then timeout() is called by an AlarmManager alarm mTimeout
665 * sent by the receive thread. They may also set mTimeout and implement timeout.
670 protected int mTimeout = 0; field in class:DhcpClient.PacketRetransmittingState
732 if (mTimeout > 0) {
733 long alarmTime = SystemClock.elapsedRealtime() + mTimeout;
772 mTimeout = DHCP_TIMEOUT_MS / 2;
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionGroup.java1783 private int mTimeout; // in seconds field in class:SipSessionGroup.MakeCallCommand
1789 mTimeout = timeout;
1801 return mTimeout;
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1756 long mTimeout; field in class:BatteryStatsImpl.StopwatchTimer
1780 mTimeout = timeout;
1896 if (mTimeout > 0 && curBatteryRealtime > mUpdateTime + mTimeout) {
1897 curBatteryRealtime = mUpdateTime + mTimeout;

Completed in 580 milliseconds