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/tests/src/android/view/animation/cts/
DelayedCheck.java 23 private long mTimeout = 3000;
30 mTimeout = timeout;
36 long timeout = mTimeout;
  /cts/tests/tests/net/src/android/net/cts/
SSLCertificateSocketFactoryTest.java 39 private int mTimeout;
44 mTimeout = 1000;
45 mFactory = (SSLCertificateSocketFactory) SSLCertificateSocketFactory.getDefault(mTimeout);
69 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 tv.setText(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);
163 if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
168 getString(R.string.bluetooth_ask_discovery, mTimeout));
224 BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE, mTimeout)) {
227 this, System.currentTimeMillis() + (long) mTimeout * 1000);
228 returnCode = mTimeout;
255 mTimeout = intent.getIntExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,
258 Log.d(TAG, "Setting Bluetooth Discoverable Timeout = " + mTimeout);
260 if (mTimeout < 0 || mTimeout > MAX_DISCOVERABLE_TIMEOUT)
    [all...]
  /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;
  /cts/tools/host/src/com/android/cts/
DeviceManager.java 397 long mTimeout;
401 mTimeout = timeout;
407 Thread.sleep(mTimeout);
  /frameworks/base/services/java/com/android/server/
VibratorService.java 47 private final long mTimeout;
64 mTimeout = millis;
82 if (mTimeout == 0) {
87 if ((mStartTime + mTimeout)
259 if (vib.mTimeout != 0) {
260 vibratorOn(vib.mTimeout);
261 mH.postDelayed(mVibrationRunnable, vib.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);
  /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, 5 * 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);
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 859 long mTimeout;
883 mTimeout = timeout;
    [all...]
  /prebuilt/common/layoutlib_api/
layoutlib_api-prebuilt.jar 

Completed in 818 milliseconds