OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bluetoothState
(Results
1 - 9
of
9
) sorted by null
/packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothCallback.java
24
void onBluetoothStateChanged(int
bluetoothState
);
BluetoothEnabler.java
100
int
bluetoothState
= BluetoothAdapter.STATE_OFF;
101
if (mLocalAdapter != null)
bluetoothState
= mLocalAdapter.getBluetoothState();
102
boolean isOn =
bluetoothState
== BluetoothAdapter.STATE_ON;
103
boolean isOff =
bluetoothState
== BluetoothAdapter.STATE_OFF;
DevicePickerFragment.java
103
public void onBluetoothStateChanged(int
bluetoothState
) {
104
super.onBluetoothStateChanged(
bluetoothState
);
106
if (
bluetoothState
== BluetoothAdapter.STATE_ON) {
CachedBluetoothDeviceManager.java
138
public synchronized void onBluetoothStateChanged(int
bluetoothState
) {
141
if (
bluetoothState
== BluetoothAdapter.STATE_TURNING_OFF) {
BluetoothSettings.java
243
private void updateContent(int
bluetoothState
, boolean scanState) {
247
switch (
bluetoothState
) {
345
public void onBluetoothStateChanged(int
bluetoothState
) {
346
super.onBluetoothStateChanged(
bluetoothState
);
347
updateContent(
bluetoothState
, true);
DeviceListPreferenceFragment.java
203
public void onBluetoothStateChanged(int
bluetoothState
) {
204
if (
bluetoothState
== BluetoothAdapter.STATE_OFF) {
/packages/services/Telephony/src/com/android/phone/
BluetoothManager.java
289
private static boolean shouldShowBluetoothIndication(int
bluetoothState
,
308
return ((
bluetoothState
== BluetoothHeadset.STATE_CONNECTED)
317
return (
bluetoothState
== BluetoothHeadset.STATE_CONNECTED);
/packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java
484
int
bluetoothState
= intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1);
485
setCurrentState(context, bluetoothStateToFiveState(
bluetoothState
));
492
private static int bluetoothStateToFiveState(int
bluetoothState
) {
493
switch (
bluetoothState
) {
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettings.java
67
import com.android.systemui.statusbar.phone.QuickSettingsModel.
BluetoothState
;
97
private
BluetoothState
mBluetoothState;
124
mBluetoothState = new QuickSettingsModel.
BluetoothState
();
584
BluetoothState
bluetoothState
= (
BluetoothState
) state;
603
bluetoothState
.stateContentDescription));
[
all
...]
Completed in 542 milliseconds