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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothProfileManager.java 84 private final PanProfile mPanProfile;
118 mPanProfile = new PanProfile(context);
119 addPanProfile(mPanProfile, PanProfile.NAME,
246 PanProfile panProfile = (PanProfile) mProfile;
248 panProfile.setLocalRole(device, role);
PanProfile.java 33 * PanProfile handles Bluetooth PAN profile (NAP and PANU).
35 final class PanProfile implements LocalBluetoothProfile {
36 private static final String TAG = "PanProfile";
71 PanProfile(Context context) {
CachedBluetoothDevice.java 62 // Device supports PANU but not NAP: remove PanProfile after device disconnects from NAP
132 if (profile instanceof PanProfile &&
133 ((PanProfile) profile).isLocalRoleNap(mDevice)) {
134 // Device doesn't support NAP, so remove PanProfile on disconnect
138 } else if (mLocalNapRoleConnected && profile instanceof PanProfile &&
139 ((PanProfile) profile).isLocalRoleNap(mDevice) &&
141 Log.d(TAG, "Removing PanProfile from device after NAP disconnect");

Completed in 458 milliseconds