Home
last modified time | relevance | path

Searched refs:playbackState (Results 1 – 2 of 2) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothMediaFacade.java259 public static void dispatchPlaybackStateChanged(int playbackState) { in dispatchPlaybackStateChanged() argument
261 switch (playbackState) { in dispatchPlaybackStateChanged()
382 PlaybackState playbackState = mMediaController.getPlaybackState(); in bluetoothMediaGetCurrentPlaybackState() local
383 if (playbackState == null) { in bluetoothMediaGetCurrentPlaybackState()
387 return playbackState; in bluetoothMediaGetCurrentPlaybackState()
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonBuilder.java628 private static JSONObject buildJsonPlaybackState(PlaybackState playbackState) in buildJsonPlaybackState() argument
631 result.put("state", playbackState.getState()); in buildJsonPlaybackState()
632 result.put("position", playbackState.getPosition()); in buildJsonPlaybackState()
633 result.put("speed", playbackState.getPlaybackSpeed()); in buildJsonPlaybackState()
634 result.put("actions", playbackState.getActions()); in buildJsonPlaybackState()