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

  /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/util/src/android/cts/util/
PollingCheck.java 25 private long mTimeout = 3000;
31 mTimeout = timeout;
41 long timeout = mTimeout;
  /packages/apps/Email/src/com/android/email/
Throttle.java 64 private int mTimeout;
95 mTimeout = mMinTimeout;
117 mTimeout *= 2;
118 if (mTimeout >= mMaxTimeout) {
119 mTimeout = mMaxTimeout;
121 if (DEBUG) debugLog("Timeout extended " + mTimeout);
123 mTimeout = mMinTimeout;
124 if (DEBUG) debugLog("Timeout reset to " + mTimeout);
140 mTimer.schedule(mRunningTimerTask, mTimeout);
174 return mTimeout;
    [all...]
  /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);
163 if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
168 getString(R.string.bluetooth_ask_discovery, mTimeout));
229 BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE, mTimeout)) {
231 long endTime = System.currentTimeMillis() + (long) mTimeout * 1000;
234 if (0 < mTimeout) {
237 returnCode = mTimeout;
264 mTimeout = intent.getIntExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,
267 Log.d(TAG, "Setting Bluetooth Discoverable Timeout = " + mTimeout);
    [all...]
RequestPermissionHelperActivity.java 48 private int mTimeout;
85 if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
88 tv.setText(getString(R.string.bluetooth_ask_enablement_and_discovery, mTimeout));
148 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);
45 SocketFactory sf = SSLCertificateSocketFactory.getDefault(mTimeout);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
ServiceProxy.java 55 private int mTimeout = 45;
66 mTimeout <<= 2;
109 mTimeout = secs;
114 return mTimeout;
167 mConnection.wait(mTimeout * 1000L);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppIncomingFileConfirmActivity.java 80 private boolean mTimeout = false;
117 if (V) Log.v(TAG, "mTimeout: " + mTimeout);
118 if (mTimeout) {
144 if (!mTimeout) {
189 mTimeout = savedInstanceState.getBoolean(PREFERENCE_USER_TIMEOUT);
190 if (V) Log.v(TAG, "onRestoreInstanceState() mTimeout: " + mTimeout);
191 if (mTimeout) {
199 if (V) Log.v(TAG, "onSaveInstanceState() mTimeout: " + mTimeout)
    [all...]
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
RenderParams.java 45 private long mTimeout;
99 mTimeout = DEFAULT_TIMEOUT;
119 mTimeout = params.mTimeout;
134 mTimeout = timeout;
214 return mTimeout;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapActivity.java 92 private boolean mTimeout = false;
176 if (!mTimeout) {
183 mTimeout = false;
235 mTimeout = true;
253 mTimeout = savedInstanceState.getBoolean(KEY_USER_TIMEOUT);
254 if (V) Log.v(TAG, "onRestoreInstanceState() mTimeout: " + mTimeout);
255 if (mTimeout) {
263 outState.putBoolean(KEY_USER_TIMEOUT, mTimeout);
  /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 39 private final long mTimeout;
49 mTimeout = timeout;
83 if (client.requestTime(mServer, (int) mTimeout)) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationVerifier.java 37 private final long mTimeout;
163 mTimeout = requestedInterval + 60 * 1000;
206 mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_TIMEOUT), mTimeout);
212 fail("timeout (" + mTimeout + "ms) waiting for " +
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardMessageArea.java 62 long mTimeout = SECURITY_MESSAGE_DURATION;
129 mMessageArea.mTimeout = timeoutMs;
172 if (mTimeout > 0) {
173 mHandler.postDelayed(mClearMessageRunnable, mTimeout);
  /frameworks/base/services/java/com/android/server/
VibratorService.java 73 private final long mTimeout;
90 mTimeout = millis;
108 if (mTimeout == 0) {
113 if ((mStartTime + mTimeout)
308 if (vib.mTimeout != 0) {
309 doVibratorOn(vib.mTimeout);
310 mH.postDelayed(mVibrationRunnable, vib.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/src/android/app/cts/
LaunchpadActivity.java 275 mHandler.postDelayed(mTimeout, 10 * 1000);
529 mHandler.removeCallbacks(mTimeout);
631 private final Runnable mTimeout = new Runnable() {
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LaunchpadActivity.java 225 mHandler.postDelayed(mTimeout, 5 * 1000);
458 mHandler.removeCallbacks(mTimeout);
569 private Runnable mTimeout = new Runnable() {
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]
  /frameworks/base/voip/java/com/android/server/sip/
SipSessionGroup.java     [all...]
  /prebuilts/misc/common/layoutlib_api/
layoutlib_api-prebuilt.jar 
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 873 long mTimeout;
897 mTimeout = timeout;
    [all...]

Completed in 1899 milliseconds