OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BluetoothAvrcpPlayerSettings
(Results
1 - 9
of
9
) 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
;
33
BluetoothAvrcpPlayerSettings
getPlayerSettings(in BluetoothDevice device);
34
boolean setPlayerApplicationSetting(in
BluetoothAvrcpPlayerSettings
plAppSetting);
BluetoothAvrcpController.java
74
* <li> {@link #EXTRA_PLAYER_SETTING} - {@link
BluetoothAvrcpPlayerSettings
} containing the
233
* @return the {@link
BluetoothAvrcpPlayerSettings
} or {@link null} if there is an error.
235
public
BluetoothAvrcpPlayerSettings
getPlayerSettings(BluetoothDevice device) {
237
BluetoothAvrcpPlayerSettings
settings = null;
253
public boolean setPlayerApplicationSetting(
BluetoothAvrcpPlayerSettings
plAppSetting) {
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
PlayerApplicationSettings.java
19
import android.bluetooth.
BluetoothAvrcpPlayerSettings
;
95
public
BluetoothAvrcpPlayerSettings
getAvrcpSettings() {
100
BluetoothAvrcpPlayerSettings
result = new
BluetoothAvrcpPlayerSettings
(supportedSettings);
128
public void setValues(
BluetoothAvrcpPlayerSettings
updates) {
130
for (int i = 1; i <=
BluetoothAvrcpPlayerSettings
.SETTING_SCAN; i++) {
141
public boolean supportsSettings(
BluetoothAvrcpPlayerSettings
settingsToCheck) {
174
case
BluetoothAvrcpPlayerSettings
.SETTING_EQUALIZER:
179
case
BluetoothAvrcpPlayerSettings
.SETTING_REPEAT:
184
case
BluetoothAvrcpPlayerSettings
.SETTING_SHUFFLE
[
all
...]
RemoteDevice.java
19
import android.bluetooth.
BluetoothAvrcpPlayerSettings
;
AvrcpPlayer.java
19
import android.bluetooth.
BluetoothAvrcpPlayerSettings
;
AvrcpControllerStateMachine.java
20
import android.bluetooth.
BluetoothAvrcpPlayerSettings
;
[
all
...]
AvrcpControllerService.java
20
import android.bluetooth.
BluetoothAvrcpPlayerSettings
;
393
public synchronized
BluetoothAvrcpPlayerSettings
getPlayerSettings(BluetoothDevice device) {
414
public boolean setPlayerApplicationSetting(
BluetoothAvrcpPlayerSettings
plAppSetting) {
715
public
BluetoothAvrcpPlayerSettings
getPlayerSettings(BluetoothDevice device) {
730
public boolean setPlayerApplicationSetting(
BluetoothAvrcpPlayerSettings
plAppSetting) {
[
all
...]
Completed in 1814 milliseconds