OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bluetoothState
(Results
1 - 8
of
8
) sorted by null
/packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothCallback.java
24
void onBluetoothStateChanged(int
bluetoothState
);
DevicePickerFragment.java
93
public void onBluetoothStateChanged(int
bluetoothState
) {
94
super.onBluetoothStateChanged(
bluetoothState
);
96
if (
bluetoothState
== BluetoothAdapter.STATE_ON) {
BluetoothEnabler.java
95
int
bluetoothState
= BluetoothAdapter.STATE_OFF;
96
if (mLocalAdapter != null)
bluetoothState
= mLocalAdapter.getBluetoothState();
97
boolean isOn =
bluetoothState
== BluetoothAdapter.STATE_ON;
98
boolean isOff =
bluetoothState
== BluetoothAdapter.STATE_OFF;
BluetoothSettings.java
237
private void updateContent(int
bluetoothState
, boolean scanState) {
241
switch (
bluetoothState
) {
333
public void onBluetoothStateChanged(int
bluetoothState
) {
334
super.onBluetoothStateChanged(
bluetoothState
);
335
updateContent(
bluetoothState
, true);
DeviceListPreferenceFragment.java
201
public void onBluetoothStateChanged(int
bluetoothState
) {
202
if (
bluetoothState
== BluetoothAdapter.STATE_OFF) {
/packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java
456
int
bluetoothState
= intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, -1);
457
setCurrentState(context, bluetoothStateToFiveState(
bluetoothState
));
464
private static int bluetoothStateToFiveState(int
bluetoothState
) {
465
switch (
bluetoothState
) {
[
all
...]
/packages/apps/Phone/src/com/android/phone/
PhoneApp.java
[
all
...]
/frameworks/base/core/java/android/server/
BluetoothEventLoop.java
108
BluetoothAdapterStateMachine
bluetoothState
) {
111
mBluetoothState =
bluetoothState
;
[
all
...]
Completed in 683 milliseconds