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

1 2 3 4 5 6 7 8 9

  /external/nist-sip/java/javax/sip/
TimeoutEvent.java 4 private Timeout mTimeout;
9 mTimeout = timeout;
15 mTimeout = timeout;
19 return mTimeout;
  /frameworks/support/testutils/src/main/java/android/support/testutils/
PollingCheck.java 27 private final long mTimeout;
40 mTimeout = timeout;
53 long timeout = mTimeout;
  /packages/apps/DocumentsUI/src/com/android/documentsui/
TimeoutTask.java 33 private long mTimeout = DEFAULT_TIMEOUT;
37 mTimeout = timeout;
43 if (mTimeout < 0) {
56 }, 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...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
PollingCheck.java 25 private long mTimeout = 3000;
35 mTimeout = timeout;
45 long timeout = mTimeout;
Within.java 36 private final long mTimeout;
39 mTimeout = timeout;
44 long timeout = mTimeout;
74 "Timed out while waiting " + mTimeout + "ms for " + data.getWanted().toString());
  /frameworks/base/core/java/com/android/internal/widget/
VerifyCredentialResponse.java 38 private int mTimeout;
78 mTimeout = timeout;
85 mTimeout = timeout;
93 dest.writeInt(mTimeout);
112 return mTimeout;
120 mTimeout = timeout;
  /frameworks/support/fragment/tests/java/android/support/v4/app/
CtsMockitoUtils.java 36 private final long mTimeout;
39 mTimeout = timeout;
44 long timeout = mTimeout;
73 throw new MockitoAssertionError("Timed out while waiting " + mTimeout + "ms for "
  /system/core/logd/
FlushCommand.cpp 38 mTimeout((start != log_time::EPOCH) ? timeout : 0) {
59 if (entry->mTimeout.tv_sec || entry->mTimeout.tv_nsec) {
67 if (((entry->mEnd + entry->mTimeout) > now) &&
91 mPid, mStart, mTimeout);
FlushCommand.h 35 uint64_t mTimeout;
LogTimes.cpp 49 mTimeout.tv_sec = timeout / NS_PER_SEC;
50 mTimeout.tv_nsec = timeout % NS_PER_SEC;
142 if (me->mTimeout.tv_sec || me->mTimeout.tv_nsec) {
144 &timesLock, &me->mTimeout) == ETIMEDOUT) {
145 me->mTimeout.tv_sec = 0;
146 me->mTimeout.tv_nsec = 0;
178 if (!me->mTimeout.tv_sec && !me->mTimeout.tv_nsec) {
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
ConnectionChecker.java 32 private long mTimeout = 600;
41 long timeout = mTimeout * 1000;
  /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);
  /frameworks/base/core/java/android/service/gatekeeper/
GateKeeperResponse.java 36 private int mTimeout;
52 response.mTimeout = timeout;
103 dest.writeInt(mTimeout);
118 return mTimeout;
  /tools/tradefederation/core/src/com/android/tradefed/util/
DeviceConcurrentUtil.java 87 private long mTimeout;
97 mTimeout = timeout;
107 mTimeout = timeout;
119 mDevice.executeShellCommand(mCommand, receiver, mTimeout, TimeUnit.MILLISECONDS, 1);
  /cts/tests/openglperf2/src/android/opengl2/cts/reference/
GLReferenceActivity.java 29 private int mTimeout;
42 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 0);
47 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, mTimeout);
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/testutils/
PollingCheck.java 26 private long mTimeout = 5000;
40 mTimeout = timeout;
54 long timeout = mTimeout;
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
PresenceCapabilityTask.java 80 private long mTimeout;
90 mTimeout = timeout;
92 if(mTimeout <=0){
97 mTimeout = 36000;
108 " mTimeout=" + mTimeout;
127 long triggerAt = SystemClock.elapsedRealtime() + mTimeout;
128 logger.debug("startTimer taskId=" + mTaskId + " mTimeout=" + mTimeout +
  /packages/apps/Settings/src/com/android/settings/bluetooth/
RequestPermissionActivity.java 61 private int mTimeout = BluetoothDiscoverableEnabler.DEFAULT_DISCOVERABLE_TIMEOUT;
129 intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, mTimeout);
176 if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
183 ? getString(R.string.bluetooth_ask_discovery, mAppLabel, mTimeout)
184 : getString(R.string.bluetooth_ask_discovery_no_name, mTimeout);
254 BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE, mTimeout)) {
256 long endTime = System.currentTimeMillis() + (long) mTimeout * 1000;
259 if (0 < mTimeout) {
262 returnCode = mTimeout;
299 mTimeout = intent.getIntExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION
    [all...]
RequestPermissionHelperActivity.java 62 private int mTimeout = -1;
92 if (mTimeout < 0) {
96 } else if (mTimeout == BluetoothDiscoverableEnabler.DISCOVERABLE_TIMEOUT_NEVER) {
106 mAppLabel, mTimeout)
108 mTimeout);
167 mTimeout = intent.getIntExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION,
  /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/DocumentsUI/tests/common/com/android/documentsui/bots/
Bots.java 67 final int mTimeout;
72 mTimeout = timeout;
85 mDevice.wait(Until.findObject(selector), mTimeout);
102 mDevice.waitForIdle(mTimeout);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapActivity.java 90 private boolean mTimeout = false;
173 if (!mTimeout) {
180 mTimeout = false;
230 mTimeout = true;
248 mTimeout = savedInstanceState.getBoolean(KEY_USER_TIMEOUT);
249 if (V) Log.v(TAG, "onRestoreInstanceState() mTimeout: " + mTimeout);
250 if (mTimeout) {
258 outState.putBoolean(KEY_USER_TIMEOUT, mTimeout);
  /cts/tests/sensor/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);
  /frameworks/base/packages/Shell/tests/src/com/android/shell/
UiBot.java 42 private final int mTimeout;
47 mTimeout = timeout;
59 boolean gotIt = mDevice.wait(Until.hasObject(By.pkg(SYSTEMUI_PACKAGE)), mTimeout);
88 boolean gotIt = mDevice.wait(Until.hasObject(By.text(text)), mTimeout);
99 boolean gotIt = mDevice.wait(Until.hasObject(By.res(id)), mTimeout);

Completed in 921 milliseconds

1 2 3 4 5 6 7 8 9