OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BluetoothAvrcpPlayerSettings
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/bluetooth/
BluetoothAvrcpPlayerSettings.aidl
19
parcelable
BluetoothAvrcpPlayerSettings
;
BluetoothAvrcpPlayerSettings.java
31
public final class
BluetoothAvrcpPlayerSettings
implements Parcelable {
32
public static final String TAG = "
BluetoothAvrcpPlayerSettings
";
119
public static final Parcelable.Creator<
BluetoothAvrcpPlayerSettings
> CREATOR
120
= new Parcelable.Creator<
BluetoothAvrcpPlayerSettings
>() {
121
public
BluetoothAvrcpPlayerSettings
createFromParcel(Parcel in) {
122
return new
BluetoothAvrcpPlayerSettings
(in);
125
public
BluetoothAvrcpPlayerSettings
[] newArray(int size) {
126
return new
BluetoothAvrcpPlayerSettings
[size];
130
private
BluetoothAvrcpPlayerSettings
(Parcel in) {
143
public
BluetoothAvrcpPlayerSettings
(int settings)
[
all
...]
IBluetoothAvrcpController.aidl
19
import android.bluetooth.
BluetoothAvrcpPlayerSettings
;
34
BluetoothAvrcpPlayerSettings
getPlayerSettings(in BluetoothDevice device);
37
boolean setPlayerApplicationSetting(in
BluetoothAvrcpPlayerSettings
plAppSetting);
BluetoothAvrcpController.java
88
* <li> {@link #EXTRA_PLAYER_SETTING} - {@link
BluetoothAvrcpPlayerSettings
} containing the
287
* @return the {@link
BluetoothAvrcpPlayerSettings
} or {@link null} if there is an error.
289
public
BluetoothAvrcpPlayerSettings
getPlayerSettings(BluetoothDevice device) {
291
BluetoothAvrcpPlayerSettings
settings = null;
350
public boolean setPlayerApplicationSetting(
BluetoothAvrcpPlayerSettings
plAppSetting) {
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AvrcpControllerClasses.java
20
import android.bluetooth.
BluetoothAvrcpPlayerSettings
;
39
* in
BluetoothAvrcpPlayerSettings
to BT spec defined Id and Vals.
46
return
BluetoothAvrcpPlayerSettings
.STATE_OFF;
48
return
BluetoothAvrcpPlayerSettings
.STATE_ON;
54
return
BluetoothAvrcpPlayerSettings
.STATE_ALL_TRACK;
56
return
BluetoothAvrcpPlayerSettings
.STATE_GROUP;
58
return
BluetoothAvrcpPlayerSettings
.STATE_OFF;
60
return
BluetoothAvrcpPlayerSettings
.STATE_SINGLE_TRACK;
66
return
BluetoothAvrcpPlayerSettings
.STATE_ALL_TRACK;
68
return
BluetoothAvrcpPlayerSettings
.STATE_GROUP
[
all
...]
AvrcpControllerService.java
21
import android.bluetooth.
BluetoothAvrcpPlayerSettings
;
321
public
BluetoothAvrcpPlayerSettings
getPlayerSettings(BluetoothDevice device) {
326
public boolean setPlayerApplicationSetting(
BluetoothAvrcpPlayerSettings
plAppSetting) {
332
* We have to extract values from
BluetoothAvrcpPlayerSettings
347
if((mSettings &
BluetoothAvrcpPlayerSettings
.SETTING_EQUALIZER) != 0) {
350
BluetoothAvrcpPlayerSettings
.SETTING_EQUALIZER, plAppSetting.
351
getSettingValue(
BluetoothAvrcpPlayerSettings
.SETTING_EQUALIZER));
353
if((mSettings &
BluetoothAvrcpPlayerSettings
.SETTING_REPEAT) != 0) {
356
BluetoothAvrcpPlayerSettings
.SETTING_REPEAT, plAppSetting.
357
getSettingValue(
BluetoothAvrcpPlayerSettings
.SETTING_REPEAT))
[
all
...]
Completed in 596 milliseconds