Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:mTimeout

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);
267 if (mTimeout < 0 || mTimeout > MAX_DISCOVERABLE_TIMEOUT) {
268 mTimeout = BluetoothDiscoverableEnabler.DEFAULT_DISCOVERABLE_TIMEOUT;