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

1 2

  /external/nist-sip/java/javax/sip/
TimeoutEvent.java 4 private Timeout mTimeout;
9 mTimeout = timeout;
15 mTimeout = timeout;
19 return mTimeout;
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
Test.java 21 private int mTimeout;
25 mTimeout = timeout;
33 return mTimeout;
  /cts/libs/deviceutil/src/android/cts/util/
PollingCheck.java 25 private long mTimeout = 3000;
31 mTimeout = timeout;
41 long timeout = mTimeout;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Throttle.java 65 private int mTimeout;
97 mTimeout = mMinTimeout;
120 mTimeout *= 2;
121 if (mTimeout >= mMaxTimeout) {
122 mTimeout = mMaxTimeout;
124 if (DEBUG) debugLog("Timeout extended " + mTimeout);
126 mTimeout = mMinTimeout;
127 if (DEBUG) debugLog("Timeout reset to " + mTimeout);
143 mTimer.schedule(mRunningTimerTask, mTimeout);
178 return mTimeout;
    [all...]
  /frameworks/base/libs/hwui/
Fence.h 97 AutoFence(EGLTimeKHR timeout = Fence::kDefaultTimeout): mTimeout(timeout) {
101 mFence.wait(mTimeout);
105 EGLTimeKHR mTimeout;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
RequestPermissionActivity.java 55 private int mTimeout = BluetoothDiscoverableEnabler.DEFAULT_DISCOVERABLE_TIMEOUT;
131 intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, mTimeout);
161 if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
166 getString(R.string.bluetooth_ask_discovery, mTimeout));
227 BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE, mTimeout)) {
229 long endTime = System.currentTimeMillis() + (long) mTimeout * 1000;
232 if (0 < mTimeout) {
235 returnCode = mTimeout;
262 mTimeout = intent.getIntExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,
265 Log.d(TAG, "Setting Bluetooth Discoverable Timeout = " + mTimeout);
    [all...]
RequestPermissionHelperActivity.java 48 private int mTimeout;
79 if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
82 p.mMessage = getString(R.string.bluetooth_ask_enablement_and_discovery, mTimeout);
142 mTimeout = intent.getIntExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,
  /cts/tests/tests/net/src/android/net/cts/
SSLCertificateSocketFactoryTest.java 33 private int mTimeout;
38 mTimeout = 1000;
39 mFactory = (SSLCertificateSocketFactory) SSLCertificateSocketFactory.getDefault(mTimeout);
49 SocketFactory sf = SSLCertificateSocketFactory.getDefault(mTimeout);
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/reference/
GLReferenceActivity.java 30 private int mTimeout;
43 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 0);
48 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, mTimeout);
GLGameActivity.java 44 private int mTimeout;
58 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 1000000);
118 watchDog = new WatchDog(mTimeout, this);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppIncomingFileConfirmActivity.java 78 private boolean mTimeout = false;
115 if (V) Log.v(TAG, "mTimeout: " + mTimeout);
116 if (mTimeout) {
140 if (!mTimeout) {
185 mTimeout = savedInstanceState.getBoolean(PREFERENCE_USER_TIMEOUT);
186 if (V) Log.v(TAG, "onRestoreInstanceState() mTimeout: " + mTimeout);
187 if (mTimeout) {
195 if (V) Log.v(TAG, "onSaveInstanceState() mTimeout: " + mTimeout)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapActivity.java 92 private boolean mTimeout = false;
175 if (!mTimeout) {
182 mTimeout = false;
234 mTimeout = true;
252 mTimeout = savedInstanceState.getBoolean(KEY_USER_TIMEOUT);
253 if (V) Log.v(TAG, "onRestoreInstanceState() mTimeout: " + mTimeout);
254 if (mTimeout) {
262 outState.putBoolean(KEY_USER_TIMEOUT, mTimeout);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
ParallelSensorOperation.java 44 private final Long mTimeout;
52 mTimeout = null;
63 mTimeout = timeout;
109 if (mTimeout != null) {
111 + TimeUnit.NANOSECONDS.convert(mTimeout, mTimeUnit);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
ServiceProxy.java 58 private int mTimeout = 45;
95 mTimeout <<= 2;
162 mTimeout = secs;
167 return mTimeout;
206 mConnection.wait(mTimeout * 1000L);
  /frameworks/base/core/java/android/net/http/
IdleCache.java 35 long mTimeout;
82 entry.mTimeout = time + TIMEOUT;
134 if (entry.mHost != null && time > entry.mTimeout) {
  /frameworks/base/core/java/android/util/
NtpTrustedTime.java 42 private final long mTimeout;
54 mTimeout = timeout;
103 if (client.requestTime(mServer, (int) mTimeout)) {
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/primitive/
GLPrimitiveActivity.java 43 private int mTimeout;
56 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 0);
63 Log.i(TAG, "Time Out: " + mTimeout);
138 watchDog = new WatchDog(mTimeout, this);
  /packages/services/Telecomm/src/com/android/server/telecom/
CreateConnectionProcessor.java 100 private CreateConnectionTimeout mTimeout;
117 return mTimeout != null && mTimeout.isCallTimedOut();
230 mTimeout = timeout;
236 if (mTimeout != null) {
237 mTimeout.unregisterTimeout();
238 mTimeout = null;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationVerifier.java 58 private final long mTimeout;
203 mTimeout = requestedInterval + 60 * 1000;
253 mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_TIMEOUT), mTimeout);
259 fail("timeout (" + mTimeout + "ms) waiting for " +
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardMessageArea.java 62 long mTimeout = SECURITY_MESSAGE_DURATION;
128 mMessageArea.mTimeout = timeoutMs;
173 if (mTimeout > 0) {
174 mHandler.postDelayed(mClearMessageRunnable, mTimeout);
  /frameworks/base/services/core/java/com/android/server/
VibratorService.java 90 private final long mTimeout;
110 mTimeout = millis;
130 if (mTimeout == 0) {
135 if ((mStartTime + mTimeout)
408 if (vib.mTimeout != 0) {
409 doVibratorOn(vib.mTimeout, vib.mUid, vib.mUsageHint);
410 mH.postDelayed(mVibrationRunnable, vib.mTimeout);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageDraw.java 37 private long mTimeout;
249 mTimeout = DISPLAY_TIME + System.currentTimeMillis();
285 if (System.currentTimeMillis() < mTimeout) {
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 71 int mTimeout;
128 mTimeout = timeout;
649 s.setSoTimeout(mTimeout);
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 64 int mTimeout;
106 mTimeout = DEFAULT_TIMEOUT;
576 s.setSoTimeout(mTimeout);
  /cts/tests/app/src/android/app/cts/
LaunchpadActivity.java 275 mHandler.postDelayed(mTimeout, 10 * 1000);
529 mHandler.removeCallbacks(mTimeout);
631 private final Runnable mTimeout = new Runnable() {

Completed in 1222 milliseconds

1 2