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

  /external/libmtp/examples/
newplaylist.c 3 * Example program to create a playlist on a device.
72 printf("You need to supply a playlist name.\n");
89 LIBMTP_playlist_t *playlist = LIBMTP_new_playlist_t(); local
90 playlist->name = playlistname;
91 playlist->no_tracks = idcount;
92 playlist->tracks = ids;
93 playlist->parent_id = 0;
94 playlist->storage_id = 0;
95 int ret = LIBMTP_Create_New_Playlist(device,playlist);
97 printf("Couldn't create playlist object\n")
    [all...]
getplaylist.c 52 LIBMTP_playlist_t *playlist; local
60 fprintf(stderr, "Just a playlist ID is required\n");
64 // Sanity check playlist ID
70 fprintf(stderr, "bad playlist id %u\n", id);
81 playlist = LIBMTP_Get_Playlist(device,id);
83 if (playlist != NULL) {
84 dump_playlist(device,playlist);
87 LIBMTP_destroy_playlist_t(playlist);
  /external/chromium_org/chrome/browser/resources/file_manager/js/media/
audio_player.js 110 * Get the playlist from Chrome.
118 * Load a new playlist.
119 * @param {Playlist} playlist Playlist object passed via mediaPlayerPrivate.
121 AudioPlayer.prototype.load = function(playlist) {
122 if (!playlist || !playlist.items.length) {
123 // playlist is null if the window is being reloaded.
124 // playlist is empty if ChromeOS has restarted with the Audio Player open
    [all...]
  /external/chromium/chrome/browser/ui/webui/
mediaplayer_ui.cc 57 static const char* kMediaplayerPlaylistURL = "chrome://mediaplayer#playlist";
137 // Sets the playlist for playlist views, since the playlist is
139 // playlist which is either now playing, or should be played.
140 void SetCurrentPlaylist(const UrlVector& playlist, int offset);
143 // The current playlist of urls.
147 // Indicator of if this handler is a playlist or a mediaplayer.
297 const MediaplayerHandler::UrlVector& playlist, int offset) {
298 current_playlist_ = playlist;
    [all...]
  /packages/apps/Music/src/com/android/music/
CreatePlaylist.java 55 mPlaylist = (EditText)findViewById(R.id.playlist);
88 // check if playlist with current name exists already, and warn the user if so.
151 // you have playlists named "New Playlist 1"/10/2/3/4/5/6/7/8/9, where
152 // making only one pass would result in "New Playlist 10" being erroneously
RenamePlaylist.java 56 mPlaylist = (EditText)findViewById(R.id.playlist);
97 // check if playlist with current name exists already, and warn the user if so.
MediaPlaybackActivity.java 399 .putExtra("playlist", "nowplaying")
601 long playlist = item.getIntent().getLongExtra("playlist", 0); local
602 MusicUtils.addToPlaylist(this, list, playlist);
650 int playlist = Integer.parseInt(uri.getLastPathSegment()); local
651 MusicUtils.addToPlaylist(this, list, playlist);
    [all...]
AlbumBrowserActivity.java 151 // in the middle of specifying a playlist to add the item to.
323 long playlist = item.getIntent().getLongExtra("playlist", 0); local
324 MusicUtils.addToPlaylist(this, list, playlist);
ArtistAlbumBrowserActivity.java 150 // in the middle of specifying a playlist to add the item to.
418 long playlist = item.getIntent().getLongExtra("playlist", 0); local
419 MusicUtils.addToPlaylist(this, list, playlist);
    [all...]
MusicUtils.java 404 * Fills out the given submenu with items for "new playlist" and
407 * the selected playlist, NEW_PLAYLIST if a new playlist
408 * should be created, and QUEUE if the "current playlist" was
434 intent.putExtra("playlist", cur.getLong(0));
474 // step 1: remove selected tracks from the current playlist, as well
479 // remove from current playlist
539 * @param ids The source array containing all the ids to be added to the playlist
572 // need to determine the number of items currently in the playlist,
808 // figure out if we need to restart with a new playlist,
810 long [] playlist = sService.getQueue(); local
    [all...]
TrackBrowserActivity.java 126 mPlaylist = icicle.getString("playlist");
134 mPlaylist = intent.getStringExtra("playlist");
351 // in the middle of specifying a playlist to add the item to.
355 outcicle.putString("playlist", mPlaylist);
532 // update a saved playlist
549 Log.d(LOGTAG, "No view when removing playlist item " + which);
705 long playlist = item.getIntent().getLongExtra("playlist", 0); local
706 MusicUtils.addToPlaylist(this, list, playlist);
820 // remove track from playlist
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
background.js 457 * @param {Object} playlist Playlist.
459 function launchAudioPlayer(playlist) {
460 audioPlayer.enqueueLaunch(playlist);
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 403 ALOGE("unable to fetch master playlist '%s'.", url.c_str());
410 // initial bandwidth by listing it first in the variant playlist.
632 // playlist unchanged
635 ALOGV("Playlist unchanged, refresh state is now %d",
646 sp<M3UParser> playlist = local
649 if (playlist->initCheck() != OK) {
650 ALOGE("failed to parse .m3u8 playlist");
655 return playlist;
    [all...]
PlaylistFetcher.cpp 511 sp<M3UParser> playlist = mSession->fetchPlaylist( local
514 if (playlist == NULL) {
516 // We succeeded in fetching the playlist, but it was
523 ALOGE("failed to load playlist at url '%s'", mURI.c_str());
529 mPlaylist = playlist;
587 ALOGE("Cannot find sequence number %d in playlist "
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 4372 long playlist = Long.valueOf(segments.get(3)); local
    [all...]
  /external/libmtp/src/
libmtp.c 43 #include "playlist-spl.h"
365 register_filetype("Abstract Playlist file", LIBMTP_FILETYPE_PLAYLIST, PTP_OFC_MTP_AbstractAudioVideoPlaylist);
    [all...]
  /build/tools/droiddoc/templates-ds/assets/css/
default.css     [all...]
  /build/tools/droiddoc/templates-sac/assets/css/
default.css     [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouterActivity.java 303 mPlayListView = (ListView) findViewById(R.id.playlist);
  /build/tools/droiddoc/templates-sdk/assets/css/
default.css     [all...]

Completed in 2632 milliseconds