HomeSort by relevance Sort by last modified time
    Searched defs:mTimeout (Results 1 - 20 of 20) 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/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;
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,
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)) {
232 this, System.currentTimeMillis() + (long) mTimeout * 1000);
233 returnCode = mTimeout;
260 mTimeout = intent.getIntExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,
263 Log.d(TAG, "Setting Bluetooth Discoverable Timeout = " + mTimeout);
265 if (mTimeout < 0 || mTimeout > MAX_DISCOVERABLE_TIMEOUT)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationVerifier.java 37 private final long mTimeout;
136 mTimeout = requestedInterval + 60 * 1000;
179 mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_TIMEOUT), mTimeout);
185 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...]
  /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/services/java/com/android/server/
VibratorService.java 72 private final long mTimeout;
89 mTimeout = millis;
107 if (mTimeout == 0) {
112 if ((mStartTime + mTimeout)
298 if (vib.mTimeout != 0) {
299 doVibratorOn(vib.mTimeout);
300 mH.postDelayed(mVibrationRunnable, vib.mTimeout);
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 64 int mTimeout;
136 mTimeout = timeout;
606 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/tests/CoreTests/android/core/
TestWebServer.java 71 int mTimeout;
128 mTimeout = timeout;
649 s.setSoTimeout(mTimeout);
  /prebuilt/common/layoutlib_api/
layoutlib_api-prebuilt.jar 
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 861 long mTimeout;
885 mTimeout = timeout;
    [all...]

Completed in 341 milliseconds