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

  /packages/apps/Bluetooth/src/com/android/bluetooth/pan/
PanService.java 21 import android.bluetooth.BluetoothPan;
117 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE);
134 if (!connectPanNative(Utils.getByteAddress(device), BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE)) {
136 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE);
138 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE);
148 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE)
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
PanProfile.java 22 import android.bluetooth.BluetoothPan;
39 private BluetoothPan mService;
57 mService = (BluetoothPan) proxy;
166 return mDeviceRoleMap.get(device) == BluetoothPan.LOCAL_NAP_ROLE;
LocalBluetoothProfileManager.java 23 import android.bluetooth.BluetoothPan;
120 BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
247 int role = intent.getIntExtra(BluetoothPan.EXTRA_LOCAL_ROLE, 0);
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 19 import android.bluetooth.BluetoothPan;
230 mConnectionAction = BluetoothPan.ACTION_CONNECTION_STATE_CHANGED;
275 if (mRole != intent.getIntExtra(BluetoothPan.EXTRA_LOCAL_ROLE, -1)) {
325 mPan = (BluetoothPan) proxy;
362 private BluetoothPan mPan = null;
706 if (mPan == null) mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
724 if (mPan == null) mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
TetherSettings.java 26 import android.bluetooth.BluetoothPan;
82 private AtomicReference<BluetoothPan> mBluetoothPan = new AtomicReference<BluetoothPan>();
155 BluetoothPan pan = mBluetoothPan.get();
193 mBluetoothPan.set((BluetoothPan) proxy);
240 BluetoothPan bluetoothPan = mBluetoothPan.get();
241 if (bluetoothPan != null) {
242 bluetoothPan.setBluetoothTethering(true);
396 BluetoothPan bluetoothPan = mBluetoothPan.get()
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothPan.java 37 *<p>BluetoothPan is a proxy object for controlling the Bluetooth
39 * the BluetoothPan proxy object.
44 public final class BluetoothPan implements BluetoothProfile {
45 private static final String TAG = "BluetoothPan";
127 * Create a BluetoothPan proxy object for interacting with the local
131 /*package*/ BluetoothPan(Context context, ServiceListener l) {
140 Log.d(TAG, "BluetoothPan() call bindService");
145 Log.d(TAG, "BluetoothPan(), bindService called");
177 Log.d(TAG, "BluetoothPan(), bindService called");
339 if (DBG) Log.d(TAG, "BluetoothPAN Proxy object connected")
    [all...]
BluetoothTetheringDataTracker.java 66 private BluetoothPan mBluetoothPan;
117 mBluetoothPan = (BluetoothPan) proxy;
BluetoothAdapter.java     [all...]

Completed in 477 milliseconds