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;
133 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE);
151 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE)) {
153 BluetoothPan.LOCAL_PANU_ROLE, BluetoothPan.REMOTE_NAP_ROLE);
155 BluetoothProfile.STATE_DISCONNECTED, BluetoothPan.LOCAL_PANU_ROLE,
156 BluetoothPan.REMOTE_NAP_ROLE);
166 BluetoothProfile.STATE_DISCONNECTING, BluetoothPan.LOCAL_PANU_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 24 import android.bluetooth.BluetoothPan;
122 BluetoothPan.ACTION_CONNECTION_STATE_CHANGED);
255 int role = intent.getIntExtra(BluetoothPan.EXTRA_LOCAL_ROLE, 0);
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 19 import android.bluetooth.BluetoothPan;
231 mConnectionAction = BluetoothPan.ACTION_CONNECTION_STATE_CHANGED;
276 if (mRole != intent.getIntExtra(BluetoothPan.EXTRA_LOCAL_ROLE, -1)) {
326 mPan = (BluetoothPan) proxy;
363 private BluetoothPan mPan = null;
707 if (mPan == null) mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
725 if (mPan == null) mPan = (BluetoothPan) connectProxy(adapter, BluetoothProfile.PAN);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothUtil.java 27 import android.bluetooth.BluetoothPan;
119 if (p instanceof BluetoothPan) return newProfile((BluetoothPan) p);
207 private static Profile newProfile(final BluetoothPan pan) {
  /packages/apps/Settings/src/com/android/settings/
TetherSettings.java 26 import android.bluetooth.BluetoothPan;
87 private AtomicReference<BluetoothPan> mBluetoothPan = new AtomicReference<BluetoothPan>();
175 BluetoothPan pan = mBluetoothPan.get();
219 mBluetoothPan.set((BluetoothPan) proxy);
266 BluetoothPan bluetoothPan = mBluetoothPan.get();
267 if (bluetoothPan != null) {
268 bluetoothPan.setBluetoothTethering(true);
437 BluetoothPan bluetoothPan = mBluetoothPan.get()
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothPan.java 36 *<p>BluetoothPan is a proxy object for controlling the Bluetooth
38 * the BluetoothPan proxy object.
43 public final class BluetoothPan implements BluetoothProfile {
44 private static final String TAG = "BluetoothPan";
126 * Create a BluetoothPan proxy object for interacting with the local
130 /*package*/ BluetoothPan(Context context, ServiceListener l) {
139 if (VDBG) Log.d(TAG, "BluetoothPan() call bindService");
141 if (VDBG) Log.d(TAG, "BluetoothPan(), bindService called");
193 if (VDBG) Log.d(TAG, "BluetoothPan(), bindService called");
355 if (DBG) Log.d(TAG, "BluetoothPAN Proxy object connected")
    [all...]
BluetoothAdapter.java     [all...]

Completed in 224 milliseconds