Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:mPan

329                         mPan = (BluetoothPan) proxy;
349 mPan = null;
366 private BluetoothPan mPan = null;
690 if (mPan == null) mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
691 assertNotNull(mPan);
694 mPan.setBluetoothTethering(true);
696 assertTrue(mPan.isTetheringOn());
708 if (mPan == null) mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
709 assertNotNull(mPan);
712 mPan.setBluetoothTethering(false);
714 assertFalse(mPan.isTetheringOn());
1108 mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
1109 assertNotNull(mPan);
1112 int state = mPan.getConnectionState(device);
1125 assertTrue(mPan.connect(device));
1135 state = mPan.getConnectionState(device);
1213 mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
1214 assertNotNull(mPan);
1217 int state = mPan.getConnectionState(device);
1223 assertTrue(mPan.disconnect(device));
1239 state = mPan.getConnectionState(device);
1452 if (mPan != null) {
1453 return mPan;
1478 while (mPan == null && System.currentTimeMillis() - s < CONNECT_PROXY_TIMEOUT) {
1481 return mPan;