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

1 2

  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
ShadowBluetoothPan.java 19 import android.bluetooth.BluetoothPan;
26 @Implements(BluetoothPan.class)
30 // Do nothing, implement it to avoid null pointer error inside BluetoothPan
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothPanFacade.java 22 import android.bluetooth.BluetoothPan;
45 private static BluetoothPan sPanProfile = null;
58 sPanProfile = (BluetoothPan) proxy;
BluetoothConnectionFacade.java 31 import android.bluetooth.BluetoothPan;
150 new IntentFilter(BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
319 case BluetoothPan.ACTION_CONNECTION_STATE_CHANGED:
  /packages/apps/Bluetooth/src/com/android/bluetooth/pan/
PanService.java 20 import android.bluetooth.BluetoothPan;
166 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE)) {
168 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE);
170 BluetoothProfile.STATE_DISCONNECTED, BluetoothPan.LOCAL_PANU_ROLE,
171 BluetoothPan.REMOTE_NAP_ROLE);
180 BluetoothProfile.STATE_DISCONNECTING, BluetoothPan.LOCAL_PANU_ROLE,
181 BluetoothPan.REMOTE_NAP_ROLE);
183 BluetoothProfile.STATE_DISCONNECTED, BluetoothPan.LOCAL_PANU_ROLE
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
PanProfile.java 22 import android.bluetooth.BluetoothPan;
39 private BluetoothPan mService;
58 mService = (BluetoothPan) proxy;
171 return mDeviceRoleMap.get(device) == BluetoothPan.LOCAL_NAP_ROLE;
LocalBluetoothProfileManager.java 29 import android.bluetooth.BluetoothPan;
138 BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
421 int role = intent.getIntExtra(BluetoothPan.EXTRA_LOCAL_ROLE, 0);
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 19 import android.bluetooth.BluetoothPan;
234 mConnectionAction = BluetoothPan.ACTION_CONNECTION_STATE_CHANGED;
279 if (mRole != intent.getIntExtra(BluetoothPan.EXTRA_LOCAL_ROLE, -1)) {
329 mPan = (BluetoothPan) proxy;
366 private BluetoothPan mPan = null;
690 if (mPan == null) mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
708 if (mPan == null) mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
    [all...]
  /packages/apps/Settings/src/com/android/settings/network/
TetherPreferenceController.java 23 import android.bluetooth.BluetoothPan;
59 private final AtomicReference<BluetoothPan> mBluetoothPan;
66 mBluetoothPan.set((BluetoothPan) proxy);
218 final BluetoothPan pan = mBluetoothPan.get();
  /packages/apps/Settings/tests/robotests/src/com/android/settings/network/
TetherPreferenceControllerTest.java 28 import android.bluetooth.BluetoothPan;
97 final BluetoothPan pan = mock(BluetoothPan.class);
98 final AtomicReference<BluetoothPan> panRef =
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/bluetooth/
LocalBluetoothProfileManagerTest.java 33 import android.bluetooth.BluetoothPan;
203 * Verify BluetoothPan.ACTION_CONNECTION_STATE_CHANGED intent with uuid will dispatch to
214 mIntent = new Intent(BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
226 * Verify BluetoothPan.ACTION_CONNECTION_STATE_CHANGED intent without uuids will not dispatch to
237 mIntent = new Intent(BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
248 * Verify BluetoothPan.ACTION_CONNECTION_STATE_CHANGED intent with uuids will dispatch to
259 mIntent = new Intent(BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
  /frameworks/base/core/java/android/bluetooth/
BluetoothPan.java 37 * <p>BluetoothPan is a proxy object for controlling the Bluetooth
39 * the BluetoothPan proxy object.
45 public final class BluetoothPan implements BluetoothProfile {
46 private static final String TAG = "BluetoothPan";
129 * Create a BluetoothPan proxy object for interacting with the local
132 /*package*/ BluetoothPan(Context context, ServiceListener l) {
141 if (VDBG) Log.d(TAG, "BluetoothPan() call bindService");
378 if (DBG) Log.d(TAG, "BluetoothPAN Proxy object connected");
382 BluetoothPan.this);
387 if (DBG) Log.d(TAG, "BluetoothPAN Proxy object disconnected")
    [all...]
BluetoothAdapter.java     [all...]
  /packages/services/Car/service/src/com/android/car/
CarBluetoothUserService.java 26 import android.bluetooth.BluetoothPan;
44 private BluetoothPan mBluetoothPan = null;
237 mBluetoothPan = (BluetoothPan) proxy;
BluetoothDeviceConnectionPolicy.java 31 import android.bluetooth.BluetoothPan;
291 } else if (BluetoothPan.ACTION_CONNECTION_STATE_CHANGED.equals(action)) {
564 profileFilter.addAction(BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
TetherSettings.java 24 import android.bluetooth.BluetoothPan;
69 private AtomicReference<BluetoothPan> mBluetoothPan = new AtomicReference<>();
151 BluetoothPan pan = mBluetoothPan.get();
352 BluetoothPan bluetoothPan = mBluetoothPan.get();
353 if (btState == BluetoothAdapter.STATE_ON && bluetoothPan != null
354 && bluetoothPan.isTetheringOn()) {
428 mBluetoothPan.set((BluetoothPan) proxy);
  /packages/apps/Settings/src/com/android/settings/wifi/tether/
TetherService.java 25 import android.bluetooth.BluetoothPan;
240 ((BluetoothPan) proxy).setBluetoothTethering(false);
  /packages/services/Car/tests/carservice_unit_test/src/com/android/car/
BluetoothAutoConnectPolicyTest.java 27 import android.bluetooth.BluetoothPan;
194 connectionIntent = new Intent(BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java 31 import android.bluetooth.BluetoothPan;
144 case BluetoothPan.ACTION_CONNECTION_STATE_CHANGED:
210 filter.addAction(BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Tethering.java 59 import android.bluetooth.BluetoothPan;
497 ((BluetoothPan) proxy).setBluetoothTethering(enable);
500 final int result = (((BluetoothPan) proxy).isTetheringOn() == enable)
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
android-all-4.1.2_r1-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
android-all-stubs.jar 

Completed in 1739 milliseconds

1 2