HomeSort by relevance Sort by last modified time
    Searched refs:BluetoothAvrcpController (Results 1 - 8 of 8) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/mbs/
A2dpMediaBrowserService.java 20 import android.bluetooth.BluetoothAvrcpController;
71 private BluetoothAvrcpController mAvrcpProfile;
134 filter.addAction(BluetoothAvrcpController.ACTION_CONNECTION_STATE_CHANGED);
135 filter.addAction(BluetoothAvrcpController.ACTION_TRACK_EVENT);
187 MSG_AVRCP_PASSTHRU, BluetoothAvrcpController.PASS_THRU_CMD_ID_PLAY).sendToTarget();
195 MSG_AVRCP_PASSTHRU, BluetoothAvrcpController.PASS_THRU_CMD_ID_PAUSE).sendToTarget();
203 MSG_AVRCP_PASSTHRU, BluetoothAvrcpController.PASS_THRU_CMD_ID_FORWARD)
213 MSG_AVRCP_PASSTHRU, BluetoothAvrcpController.PASS_THRU_CMD_ID_BACKWARD)
260 if (BluetoothAvrcpController.ACTION_CONNECTION_STATE_CHANGED.equals(action)) {
271 } else if (BluetoothAvrcpController.ACTION_TRACK_EVENT.equals(action))
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dpsink/
A2dpSinkStreamingStateMachine.java 20 import android.bluetooth.BluetoothAvrcpController;
212 BluetoothAvrcpController.PASS_THRU_CMD_ID_PAUSE,
213 BluetoothAvrcpController.KEY_STATE_PRESSED);
216 BluetoothAvrcpController.PASS_THRU_CMD_ID_PAUSE,
217 BluetoothAvrcpController.KEY_STATE_RELEASED);
236 BluetoothAvrcpController.PASS_THRU_CMD_ID_PLAY,
237 BluetoothAvrcpController.KEY_STATE_PRESSED);
240 BluetoothAvrcpController.PASS_THRU_CMD_ID_PLAY,
241 BluetoothAvrcpController.KEY_STATE_RELEASED);
A2dpSinkService.java 20 import android.bluetooth.BluetoothAvrcpController;
192 if (keyCode == BluetoothAvrcpController.PASS_THRU_CMD_ID_PLAY &&
193 keyState == BluetoothAvrcpController.KEY_STATE_RELEASED) {
195 } else if ((keyCode == BluetoothAvrcpController.PASS_THRU_CMD_ID_PAUSE ||
196 keyCode == BluetoothAvrcpController.PASS_THRU_CMD_ID_STOP) &&
197 keyState == BluetoothAvrcpController.KEY_STATE_RELEASED) {
A2dpSinkStateMachine.java 32 import android.bluetooth.BluetoothAvrcpController;
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothAvrcpFacade.java 25 import android.bluetooth.BluetoothAvrcpController;
45 private static BluetoothAvrcpController sAvrcpProfile = null;
58 sAvrcpProfile = (BluetoothAvrcpController) proxy;
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
AvrcpControllerService.java 20 import android.bluetooth.BluetoothAvrcpController;
241 case BluetoothAvrcpController.PASS_THRU_CMD_ID_PLAY:
249 case BluetoothAvrcpController.PASS_THRU_CMD_ID_PAUSE:
267 case BluetoothAvrcpController.PASS_THRU_CMD_ID_STOP:
279 case BluetoothAvrcpController.PASS_THRU_CMD_ID_BACKWARD:
280 case BluetoothAvrcpController.PASS_THRU_CMD_ID_FORWARD:
281 case BluetoothAvrcpController.PASS_THRU_CMD_ID_FF:
282 case BluetoothAvrcpController.PASS_THRU_CMD_ID_REWIND:
514 Intent intent = new Intent(BluetoothAvrcpController.ACTION_TRACK_EVENT);
515 intent.putExtra(BluetoothAvrcpController.EXTRA_METADATA, mMetaData)
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothAvrcpController.java 36 *<p>BluetoothAvrcpController is a proxy object for controlling the Bluetooth AVRCP
38 * the BluetoothAvrcpController proxy object.
42 public final class BluetoothAvrcpController implements BluetoothProfile {
43 private static final String TAG = "BluetoothAvrcpController";
159 * Create a BluetoothAvrcpController proxy object for interacting with the local
163 /*package*/ BluetoothAvrcpController(Context context, ServiceListener l) {
389 BluetoothAvrcpController.this);
BluetoothAdapter.java     [all...]

Completed in 101 milliseconds