OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
;
132
BluetoothPan
.LOCAL_PANU_ROLE,
BluetoothPan
.REMOTE_NAP_ROLE);
150
BluetoothPan
.LOCAL_PANU_ROLE,
BluetoothPan
.REMOTE_NAP_ROLE)) {
152
BluetoothPan
.LOCAL_PANU_ROLE,
BluetoothPan
.REMOTE_NAP_ROLE);
154
BluetoothProfile.STATE_DISCONNECTED,
BluetoothPan
.LOCAL_PANU_ROLE,
155
BluetoothPan
.REMOTE_NAP_ROLE);
165
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
;
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
;
84
private AtomicReference<
BluetoothPan
> mBluetoothPan = new AtomicReference<
BluetoothPan
>();
157
BluetoothPan
pan = mBluetoothPan.get();
195
mBluetoothPan.set((
BluetoothPan
) proxy);
242
BluetoothPan
bluetoothPan
= mBluetoothPan.get();
243
if (
bluetoothPan
!= null) {
244
bluetoothPan
.setBluetoothTethering(true);
398
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
if (VDBG) Log.d(TAG, "
BluetoothPan
() call bindService");
142
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
...]
BluetoothTetheringDataTracker.java
72
private
BluetoothPan
mBluetoothPan;
124
mBluetoothPan = (
BluetoothPan
) proxy;
BluetoothAdapter.java
[
all
...]
Completed in 107 milliseconds