HomeSort by relevance Sort by last modified time
    Searched defs: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;
  /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);
  /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)) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
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,
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...]
  /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 " +
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppIncomingFileConfirmActivity.java 80 private boolean mTimeout = false;
116 if (V) Log.v(TAG, "mTimeout: " + mTimeout);
117 if (mTimeout) {
143 if (!mTimeout) {
188 mTimeout = savedInstanceState.getBoolean(PREFERENCE_USER_TIMEOUT);
189 if (V) Log.v(TAG, "onRestoreInstanceState() mTimeout: " + mTimeout);
190 if (mTimeout) {
198 if (V) Log.v(TAG, "onSaveInstanceState() mTimeout: " + mTimeout)
    [all...]
  /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/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...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardMessageArea.java 83 long mTimeout = SECURITY_MESSAGE_DURATION;
153 mMessageArea.mTimeout = timeoutMs;
197 if (mTimeout > 0) {
198 mHandler.postDelayed(mClearMessageRunnable, mTimeout);
  /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/webkit/src/android/webkit/cts/
GeolocationTest.java 485 public volatile boolean mTimeout = false;
491 mTimeout = false;
506 mTimeout = true;
  /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() {
  /frameworks/base/services/java/com/android/server/
VibratorService.java 82 private final long mTimeout;
100 mTimeout = millis;
119 if (mTimeout == 0) {
124 if ((mStartTime + mTimeout)
353 if (vib.mTimeout != 0) {
354 doVibratorOn(vib.mTimeout, vib.mUid);
355 mH.postDelayed(mVibrationRunnable, vib.mTimeout);
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 71 int mTimeout;
128 mTimeout = timeout;
649 s.setSoTimeout(mTimeout);
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java     [all...]
  /prebuilts/misc/common/layoutlib_api/
layoutlib_api-prebuilt.jar 
  /prebuilts/devtools/tools/lib/
layoutlib-api.jar 

Completed in 577 milliseconds